Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cstdlib>
- #include <iostream>
- #include <fstream>
- #include <conio.h>
- #include "windows.h"
- #include <time.h>
- using namespace std;
- void dd()
- {
- system("CLS");
- };
- void usun()
- {
- fstream plik;
- string q;
- q = " ";
- plik.open("c:\\zad\\dane.txt",ios::out);
- plik << q;
- plik.close();
- };
- void wyswietl()
- {
- fstream plik;
- plik.open("c:\\zad\\dane.txt",ios::in);
- char a;
- plik >> noskipws;
- while( !plik.eof() )
- {
- plik >> a;
- cout << a;
- }
- cout << endl;
- plik.close();
- };
- void dodaj()
- {
- string q, w,e, pes, datau;
- fstream plik;
- cout << "podaj imie ";
- cin >> q;
- cout << endl;
- cout << "podaj nazwisko ";
- cin >> w;
- cout << endl;
- cout << "podaj pesel ";
- cin >> pes;
- cout << endl;
- cout << "podaj date urodzenia ";
- cin >> datau;
- cout << endl;
- plik.open("c:\\zad\\dane.txt",ios::out|ios::app);
- plik << q << endl << w << endl << pes << endl << datau << endl;
- plik.close();
- };
- int main(int argc, char *argv[])
- {
- dd:
- srand(time(NULL));
- system("CLS");
- cout << "Menu: " << endl;
- cout << "1. Wyswietl dane" << endl;
- cout << "2. Dodaj osobe" << endl;
- cout << "3. Usun wszystko" << endl;
- cout << endl;
- cout << endl;
- char men;
- men = getch();
- if (men == '1'){
- wyswietl();
- getch();
- goto dd;}
- else if (men == '2'){
- dodaj();
- goto dd;}
- else if (men == '3'){
- usun();
- goto dd;}
- else if (men == 27);
- return 0;
- system("PAUSE");
- return EXIT_SUCCESS;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement