我正在尝试使用代码从文件中读取:
#include<fstream>
#include<string>
#include<iostream>
#include <cstring>
#include<cmath>
using namespace std;
char data[100];
int main ()
{
ifstream f1("hello.txt"); // declaring an object of class ifstream open "file.txt" for reading
while (infile>>data)
{
cout<<"why";
}
f1.close(); // close the file
}
我的档案是: r FFFFF
输出是:为什么为什么为什么
我应该只是“为什么”。我得到的“为什么”的数量是不稳定的。