Advertisement
tei123

sad

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