编一个应用程序,按行顺序地读取一个可读文件的内容。
java程序编写
参考答案:#include <fstream>
#include <iostream>
using namespace std;
int main()
{
ifstream fin("input.dat");
if(!fin) return 1;
char gs[256];
while(!fin.eof())
{
fin.getline(gs, 256);
cout<<gs<<endl;
}
fin.close();
return 0;
}