我目前正在用 C++ 做一个小项目,现在有点困惑。我需要从使用 ifstream in() 的文件中读取一行中的一定数量的单词。它现在的问题是它一直忽略空格。我需要计算文件中的空格数量来计算字数。反正有 in() 不忽略空白吗?
ifstream in("input.txt");
ofstream out("output.txt");
while(in.is_open() && in.good() && out.is_open())
{
in >> temp;
cout << tokencount(temp) << endl;
}