Advertisement
programusy

Untitled

Mar 9th, 2023
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #include <iostream>
  2. #include <time.h>
  3. #include <stdio.h>
  4. #include <cstdlib>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10. FILE * plik;
  11. char nazwa[100];
  12. int liczba1 = 0;
  13. srand(time(0));
  14.  
  15. cout << "Podaj nazwe pliku" << endl;
  16. cin >> nazwa;
  17.  
  18. if((plik=fopen(nazwa,"a"))==NULL)
  19. {
  20. cout << "Nie mozna otworzyc pliku"<<endl;
  21. }
  22. else
  23. {
  24. for(int i=0; i<10; i++)
  25. {
  26. liczba1 = rand()%50;
  27. fprintf(plik, "tekst");
  28. cout << "Zapisano"<<endl;
  29. }
  30.  
  31. }
  32. fclose(plik);
  33. return 0;
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement