Advertisement
tei123

cockwksiazce

May 30th, 2016
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 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 ksiazka
  9. {
  10. private:
  11.  
  12. int rokwydania;
  13. char sygnatura[20];
  14. char tytul[20];
  15. char autor[20];
  16. public:
  17. ksiazka();
  18. ksiazka(char *rokwydania1);
  19. void wyswietl();
  20. ~ksiazka();
  21. };
  22.  
  23.  
  24. class bajka:ksiazka
  25. {
  26. public:
  27. bajka();
  28. bajka(char *rokwydania1);
  29. void wyswietl();
  30. ~bajka();
  31. };
  32.  
  33.  
  34.  
  35. int main(int argc, char *argv[])
  36. {
  37.  
  38. ksiazka ks1,ks2("2013");
  39. ks2.wyswietl();
  40. ks1.wyswietl();
  41.  
  42. system("PAUSE");
  43. return EXIT_SUCCESS;
  44. }
  45.  
  46. void ksiazka::wyswietl()
  47. {
  48. cout << "Dane:" << endl;
  49. cout << autor << " "<< sygnatura <<" "<< rokwydania<<" " <<tytul<<endl;
  50. }
  51.  
  52.  
  53. ksiazka::~ksiazka()
  54. {
  55. "destruktor sprzata";
  56. }
  57.  
  58.  
  59. ksiazka::ksiazka()
  60. {
  61. cin>>rokwydania;
  62. cin>>sygnatura;
  63. cin>>tytul;
  64. cin>>autor;
  65. };
  66.  
  67. ksiazka::ksiazka(char *rokwydania1):rokwydania(2013)
  68. {
  69. strcpy(sygnatura,"sygnatura");
  70.  
  71. strcpy(tytul,"tytul");
  72.  
  73. strcpy(autor,"autor");
  74.  
  75.  
  76. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement