Advertisement
programusy

Untitled

Apr 4th, 2024
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. #define MAX 20
  6. FILE
  7.  
  8.  
  9.  
  10. class osoba
  11. {
  12. public:
  13. char nazwisko[20];
  14. char imie[15];
  15. char miejscowosc[20];
  16. char ulica[20];
  17. char numer[15];
  18. char telefon[10];
  19.  
  20. void podaj_dane();
  21. };
  22.  
  23. void osoba::podaj_dane()
  24. {
  25. char naz[20];
  26. char im[15];
  27. char miej[20];
  28. char ul[20];
  29. char nr[15];
  30. char tel[10];
  31.  
  32. if((plik = fopen("baza.dat", "a+"))=NULL)
  33. {
  34. cout << "Blad otwarcia pliku" << endl;
  35. }
  36.  
  37. cout << "Podaj nazwisko" << endl;
  38. cin >> naz;
  39. strcpy(nazwisko, naz);
  40. cout << "Podaj imie" << endl;
  41. cin >> im;
  42. strcpy(imie, im);
  43. cout << "Podaj miejscowosc" << endl;
  44. cin >> miej;
  45. strcpy(miejscowosc, miej);
  46. cout << "Podaj ulice" << endl;
  47. cin >> ul;
  48. strcpy(ul, ulica);
  49. cout << "Podaj numer" << endl;
  50. cin >> nr;
  51. strcpy(nr, numer);
  52. cout << "Podaj telefon" << endl;
  53. cin >> tel;
  54. strcpy(tel, telefon);
  55.  
  56. }
  57.  
  58.  
  59.  
  60.  
  61. int main()
  62. {
  63. osoba osoby [MAX];
  64. int koniec;
  65. do
  66. {
  67. system{"cls"};
  68. cout << "--------------------------------------" << endl;
  69. cout << "- 0 - Koniec -" << endl;
  70. cout << "- 1 - Dodaj osobe -" << endl;
  71. cout << "- 2 - Wyswietl osobe -" << endl;
  72. cout << "- 3 - Wyswietl grupe osob -" << endl;
  73. cout << "- 4 - Szukaj po nazwisku -" << endl;
  74. cout << "- 5 - Szukaj po nr tel -" << endl;
  75. cout << "--------------------------------------" << endl;
  76. cin >> koniec;
  77. switch(koniec)
  78. {
  79. case 1:
  80. cout << "Koniec programu" << endl;
  81. break;
  82. }
  83. }
  84. while(koniec == 1)
  85. return 0;
  86. }
  87.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement