Advertisement
tei123

i<3cocks

Apr 18th, 2016
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3. #include <fstream>
  4. #include <conio.h>
  5. #include "windows.h"
  6. #include <time.h>
  7.  
  8.  
  9. using namespace std;
  10.  
  11. void dd()
  12. {
  13. system("CLS");
  14. };
  15. void usun()
  16. {
  17. fstream plik;
  18. string q;
  19. q = " ";
  20. plik.open("c:\\zad\\dane.txt",ios::out);
  21. plik << q;
  22. plik.close();
  23. };
  24.  
  25. void wyswietl()
  26. {
  27. fstream plik;
  28. plik.open("c:\\zad\\dane.txt",ios::in);
  29. char a;
  30. plik >> noskipws;
  31. while( !plik.eof() )
  32. {
  33.  
  34. plik >> a;
  35. cout << a;
  36. }
  37. cout << endl;
  38. plik.close();
  39. };
  40.  
  41.  
  42. void dodaj()
  43. {
  44. string q, w,e, pes, datau;
  45. fstream plik;
  46. cout << "podaj imie ";
  47. cin >> q;
  48.  
  49. cout << endl;
  50. cout << "podaj nazwisko ";
  51. cin >> w;
  52. cout << endl;
  53. cout << "podaj pesel ";
  54. cin >> pes;
  55. cout << endl;
  56. cout << "podaj date urodzenia ";
  57. cin >> datau;
  58. cout << endl;
  59. plik.open("c:\\zad\\dane.txt",ios::out|ios::app);
  60. plik << q << endl << w << endl << pes << endl << datau << endl;
  61. plik.close();
  62. };
  63.  
  64. int main(int argc, char *argv[])
  65. {
  66. dd:
  67. srand(time(NULL));
  68. system("CLS");
  69. cout << "Menu: " << endl;
  70. cout << "1. Wyswietl dane" << endl;
  71. cout << "2. Dodaj osobe" << endl;
  72. cout << "3. Usun wszystko" << endl;
  73. cout << endl;
  74. cout << endl;
  75. char men;
  76. men = getch();
  77. if (men == '1'){
  78. wyswietl();
  79. getch();
  80. goto dd;}
  81. else if (men == '2'){
  82. dodaj();
  83. goto dd;}
  84. else if (men == '3'){
  85. usun();
  86. goto dd;}
  87. else if (men == 27);
  88. return 0;
  89.  
  90. system("PAUSE");
  91. return EXIT_SUCCESS;
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement