Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- using namespace std;
- class car
- {
- protected:
- string brand;
- float price;
- int year;
- public:
- //konstruktor
- car(string brand,float price, int year)
- {
- this->brand = brand;
- this->price = price;
- this->year = year;
- }
- //getters setters
- string getBrand()
- {
- return this->brand;
- }
- void setBrand(string brand)
- {
- this->brand = brand;
- }
- };
- int main()
- {
- cout << "Hello world!" << endl;
- fstream plikTekstowy;
- plikTekstowy.open("cars.txt");
- if(plikTekstowy.bad()) cout<<"błąd";
- else{
- car samochod7("Audi",1555,2001);
- car samochod2("BMW",12,2009);
- car samochod3("Opel",14,2000);
- plikTekstowy<<samochod7.getBrand()<<endl;
- plikTekstowy<<samochod2.getBrand()<<endl;
- plikTekstowy<<samochod3.getBrand()<<endl;
- }
- string linia;
- plikTekstowy.seekp(0,ios::beg);
- while(getline(plikTekstowy,linia)){
- cout <<linia<<endl;
- }
- plikTekstowy.close();
- //zadanie 3
- fstream plikbinarny;
- plikbinarny.open("binarny",ios::binary);
- int liczba;
- cin>>liczba;
- while (liczba != 0)
- {
- plikbinarny<<liczba;
- cin>>liczba;
- }
- plikbinarny.close();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement