これは簡単な質問です。しかし、私はデータをファイルに出力しようとしています。これは正常に機能します。ただし、データが個々の行に出力されるように、適切なポイントに新しい行を実装しようとしています。
これは私のコードが現在どのように見えるかです:
main.cpp
Writer w("Output.txt");
w.writeString("The number of words in the script are: ");
w.writeInt(count);
w.writeEol();
w.writeString("The number of Officers in the script are: ");
w.writeInt(ofCount);
w.writeEol();
w.writeString("The number of Courtiers in the script are: ");
w.writeInt(cCount);
w.close();
Writer.cpp
void Writer::writeEol()
{
out << "\n" << endl;
}
システム全体がこのように構築されているため、コードはこのように実装する必要があります。
だから私の質問は、出力ファイルに新しい行を追加するためにWriter :: writeEol()をどのように調整するのですか?
私の出力ファイルは現在次のように出力されます。
The number of words in the script are: 32339The number of Officers in the script are: 2The number of Courtiers in the script are: 9
どんな助けでも大歓迎です。:)