这是我的输入 txt 文件
i like apple and i love to eat apple.are you like to eat apple.
我想将此文件输出到另一个文本文件中,其中必须在句号后插入新行,并且每个单词必须大写,就像我们在 php 或 python 中使用 Toupper 一样。我该怎么做?
这是我所做的编码:
inputFile.get(ch);
while (!inputFile.eof())
{
outputFile.put(toupper(ch));
inputFile.get(ch);
}