我有一个包含65536个整数的文本文件。我正在编写一个下面给出的C ++程序来阅读这个文件。但它不能正常工作。它适用于几乎没有整数的文本文件。但是对于大文件不能正常工作。
#include(iostream)
#include(fstream)
using namespace std;
int main() {
ifstream myReadFile;
myReadFile.open("FileName.txt");
char output[1000];
if (myReadFile.is_open()) {
while (!myReadFile.eof()) {
myReadFile >> output;
cout<<output;
}
}
myReadFile.close();
system("pause");
return 0;
}
请建议解决方案。
答案 0 :(得分:1)
每次都读一行
Uncaught SyntaxError: missing ) after argument list(…)