3

我们可以在一个函数中同时使用输入文件的元素,同时将结果写入输出文件吗?

while语句内部是真的吗?

void solve(string inputFileName, string outputFileName)
{
//declaring variables
string filename = inputFileName;

//Open a stream for the input file
ifstream inputFile;
inputFile.open( filename.c_str(), ios_base::in );

//open a stream for output file
outputfile = outputFileName;
ofstream outputFile;
outputFile.open(outputfile.c_str(), ios_base::out);

while(!inputFile.eof())
{
    inputFile >> number;    //Read an integer from the file stream
    outputFile << number*100 << "\n"
    // do something

}

//close the input file stream
inputFile.close();

//close output file stream
outputFile.close();
}
4

2 回答 2

2
while(!inputFile.eof())

不能很好地工作,因为它测试的是上一个操作是否失败,而不是下一个操作是否成功。

而是尝试

while(inputFile >> number)
{
    outputFile << number*100 << "\n"
    // do something

}

您可以在其中测试每个输入操作是否成功,并在读取失败时终止循环。

于 2012-11-01T20:40:33.927 回答
1

您可以,输入和输出流是相互独立的,因此在语句中将它们混合在一起没有组合效果。

于 2012-11-01T20:40:15.103 回答