Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <time.h>
- #include <stdio.h>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- FILE * plik;
- char nazwa[100];
- int liczba1 = 0;
- srand(time(0));
- cout << "Podaj nazwe pliku" << endl;
- cin >> nazwa;
- if((plik=fopen(nazwa,"a"))==NULL)
- {
- cout << "Nie mozna otworzyc pliku"<<endl;
- }
- else
- {
- for(int i=0; i<10; i++)
- {
- liczba1 = rand()%50;
- fprintf(plik, "tekst");
- cout << "Zapisano"<<endl;
- }
- }
- fclose(plik);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement