Advertisement
tei123

cockclass

May 18th, 2016
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 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
  18. {
  19. private:
  20. string imie;
  21. string nazwisko;
  22. string wiek;
  23. string klasa;
  24. string nauczyciel;
  25. public:
  26. void wprowadz3();
  27. void wyswietl3();
  28. };
  29.  
  30. class student
  31. {
  32. private:
  33. string imie;
  34. string nazwisko;
  35. string wiek;
  36. string uczelnia;
  37. string semestr;
  38. string wykladowca;
  39. public:
  40. void wprowadz2();
  41. void wyswietl2();
  42. };
  43.  
  44.  
  45. int main(int argc, char *argv[])
  46. {
  47. osoba os1;
  48. student st1;
  49. uczen uc1;
  50. os1.wprowadz();
  51. os1.wyswietl();
  52.  
  53. st1.wprowadz2();
  54. st1.wyswietl2();
  55.  
  56. uc1.wprowadz3();
  57. uc1.wyswietl3();
  58. system("PAUSE");
  59. return EXIT_SUCCESS;
  60. }
  61.  
  62. void osoba::wprowadz()
  63. {
  64. cout << "Wprowadz imie nazwisko wiek " << endl;
  65. cin >> imie >> nazwisko >> wiek;
  66. }
  67. void osoba::wyswietl()
  68. {
  69. cout << "Dane:" << endl;
  70. cout << imie << " "<< nazwisko <<" "<< wiek<<endl;
  71. }
  72.  
  73.  
  74.  
  75. void student::wprowadz2()
  76. {
  77. cout << "Wprowadz imie nazwisko wiek uczelnie semestr wykladowce" << endl;
  78. cin >> imie >> nazwisko >> wiek >> uczelnia>>semestr >> wykladowca;
  79.  
  80. }
  81. void student::wyswietl2()
  82. {
  83. cout << "Dane:" << endl;
  84. cout << imie << " "<< nazwisko <<" "<< wiek<<" "<<uczelnia<<" "<<semestr<<" "<<wykladowca<<endl;
  85. }
  86.  
  87.  
  88.  
  89.  
  90.  
  91. void uczen::wprowadz3()
  92. {
  93. cout << "Wprowadz imie nazwisko wiek klase nauczyciela" << endl;
  94. cin >> imie >> nazwisko >> wiek>> klasa >> nauczyciel;
  95. }
  96. void uczen::wyswietl3()
  97. {
  98. cout << "Dane:" << endl;
  99. cout << imie << " "<< nazwisko <<" "<< wiek<<" "<<klasa<<" "<<nauczyciel<<endl;
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement