不知何故,fstream没有从文件中读取我的输入。
int main()
{
ifstream fin("duomenys.txt");
ofstream fout("rezultatas.txt");
int n = 0;
fin >> n;
cout << n << endl;
fout.close();
fin.close();
return 0;
}
duomenys.txt
24
此处的输出为0.我无法弄清楚为什么这不起作用..
答案 0 :(得分:1)
路径相对于进程的工作目录,可能与可执行位置不同。
使用绝对路径确认您有路径问题,然后根据需要继续查找正确的相对路径。
答案 1 :(得分:0)
试试这个:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main () {
string line;
ifstream myfile ("example.txt");
if (myfile.is_open())
{
while ( getline (myfile,line) )
{
cout << line << endl;
}
myfile.close();
}
else cout << "Unable to open file";
return 0;
}