//c++
#include <iostream>
#include <fstream>
#include <ctime>
using namespace std;
signed main() {
srand(time(NULL));
ofstream f;
ifstream fin;
try {
f.open("primer.txt");
for (int i = 0; i < 20; i++)
f << rand() % 15 << " ";
f.close();
}
catch (...) {
cout << "Error!";
fin.open("primer.txt");
int x;
do
{
fin >> x;
cout << x % 5 << " ";
} while (!fin.eof());//пока не наступил конец файла
fin.close();
return 0;
//c++
#include <iostream>
#include <fstream>
#include <ctime>
using namespace std;
signed main() {
srand(time(NULL));
ofstream f;
ifstream fin;
try {
f.open("primer.txt");
for (int i = 0; i < 20; i++)
f << rand() % 15 << " ";
f.close();
}
catch (...) {
cout << "Error!";
}
try {
fin.open("primer.txt");
int x;
do
{
fin >> x;
cout << x % 5 << " ";
} while (!fin.eof());//пока не наступил конец файла
fin.close();
}
catch (...) {
cout << "Error!";
fin.close();
}
return 0;
}