Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- #define MAX 20
- FILE
- class osoba
- {
- public:
- char nazwisko[20];
- char imie[15];
- char miejscowosc[20];
- char ulica[20];
- char numer[15];
- char telefon[10];
- void podaj_dane();
- };
- void osoba::podaj_dane()
- {
- char naz[20];
- char im[15];
- char miej[20];
- char ul[20];
- char nr[15];
- char tel[10];
- if((plik = fopen("baza.dat", "a+"))=NULL)
- {
- cout << "Blad otwarcia pliku" << endl;
- }
- cout << "Podaj nazwisko" << endl;
- cin >> naz;
- strcpy(nazwisko, naz);
- cout << "Podaj imie" << endl;
- cin >> im;
- strcpy(imie, im);
- cout << "Podaj miejscowosc" << endl;
- cin >> miej;
- strcpy(miejscowosc, miej);
- cout << "Podaj ulice" << endl;
- cin >> ul;
- strcpy(ul, ulica);
- cout << "Podaj numer" << endl;
- cin >> nr;
- strcpy(nr, numer);
- cout << "Podaj telefon" << endl;
- cin >> tel;
- strcpy(tel, telefon);
- }
- int main()
- {
- osoba osoby [MAX];
- int koniec;
- do
- {
- system{"cls"};
- cout << "--------------------------------------" << endl;
- cout << "- 0 - Koniec -" << endl;
- cout << "- 1 - Dodaj osobe -" << endl;
- cout << "- 2 - Wyswietl osobe -" << endl;
- cout << "- 3 - Wyswietl grupe osob -" << endl;
- cout << "- 4 - Szukaj po nazwisku -" << endl;
- cout << "- 5 - Szukaj po nr tel -" << endl;
- cout << "--------------------------------------" << endl;
- cin >> koniec;
- switch(koniec)
- {
- case 1:
- cout << "Koniec programu" << endl;
- break;
- }
- }
- while(koniec == 1)
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement