Advertisement
tei123

dziedziczonycock

May 23rd, 2016
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. class osoba
  7. {
  8. private:
  9. string imie;
  10. string nazwisko;
  11. string wiek;
  12. public:
  13. void wprowadz();
  14. void wyswietl();
  15. };
  16.  
  17. class uczen:osoba
  18. {
  19. private:
  20. string klasa;
  21. string nauczyciel;
  22. public:
  23. void wprowadz();
  24. void wyswietl();
  25. };
  26.  
  27.  
  28. int main(int argc, char *argv[])
  29. {
  30. osoba os1;
  31. uczen uc1;
  32.  
  33. os1.wprowadz();
  34. os1.wyswietl();
  35.  
  36. uc1.wprowadz();
  37. uc1.wyswietl();
  38.  
  39. system("PAUSE");
  40. return EXIT_SUCCESS;
  41. }
  42.  
  43. void osoba::wprowadz()
  44. {
  45. cout << "Wprowadz imie nazwisko wiek " << endl;
  46. cin >> imie >> nazwisko >> wiek;
  47. }
  48. void osoba::wyswietl()
  49. {
  50.  
  51. cout << "Dane:" << endl;
  52. cout << imie << " "<< nazwisko <<" "<< wiek<<endl;
  53. }
  54.  
  55.  
  56. void uczen::wprowadz()
  57. {
  58. osoba::wprowadz();
  59. cout << "Wprowadz klase nauczyciela" << endl;
  60. cin >> klasa >> nauczyciel;
  61. }
  62. void uczen::wyswietl()
  63. {
  64. osoba::wyswietl();
  65. cout <<" "<<klasa<<" "<<nauczyciel<<endl;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement