C++
- 2 ответа
- 0 вопросов
3
Вклад в тег
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
string namefile = "file.txt";
ifstream ifs(namefile.c_str());
if (!ifs) cerr << "can't open file\n";
int a = 0;
while (ifs >> a)
cout << a << '\n';
return 0;
}