Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cstdlib>
- #include <iostream>
- using namespace std;
- class osoba
- {
- private:
- string imie;
- string nazwisko;
- string wiek;
- public:
- void wprowadz();
- void wyswietl();
- };
- class uczen
- {
- private:
- string imie;
- string nazwisko;
- string wiek;
- string klasa;
- string nauczyciel;
- public:
- void wprowadz3();
- void wyswietl3();
- };
- class student
- {
- private:
- string imie;
- string nazwisko;
- string wiek;
- string uczelnia;
- string semestr;
- string wykladowca;
- public:
- void wprowadz2();
- void wyswietl2();
- };
- int main(int argc, char *argv[])
- {
- osoba os1;
- student st1;
- uczen uc1;
- os1.wprowadz();
- os1.wyswietl();
- st1.wprowadz2();
- st1.wyswietl2();
- uc1.wprowadz3();
- uc1.wyswietl3();
- system("PAUSE");
- return EXIT_SUCCESS;
- }
- void osoba::wprowadz()
- {
- cout << "Wprowadz imie nazwisko wiek " << endl;
- cin >> imie >> nazwisko >> wiek;
- }
- void osoba::wyswietl()
- {
- cout << "Dane:" << endl;
- cout << imie << " "<< nazwisko <<" "<< wiek<<endl;
- }
- void student::wprowadz2()
- {
- cout << "Wprowadz imie nazwisko wiek uczelnie semestr wykladowce" << endl;
- cin >> imie >> nazwisko >> wiek >> uczelnia>>semestr >> wykladowca;
- }
- void student::wyswietl2()
- {
- cout << "Dane:" << endl;
- cout << imie << " "<< nazwisko <<" "<< wiek<<" "<<uczelnia<<" "<<semestr<<" "<<wykladowca<<endl;
- }
- void uczen::wprowadz3()
- {
- cout << "Wprowadz imie nazwisko wiek klase nauczyciela" << endl;
- cin >> imie >> nazwisko >> wiek>> klasa >> nauczyciel;
- }
- void uczen::wyswietl3()
- {
- cout << "Dane:" << endl;
- cout << imie << " "<< nazwisko <<" "<< wiek<<" "<<klasa<<" "<<nauczyciel<<endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement