我是C++的新手。我寫了一個小程序來打開一個文件並用用戶的輸入寫入它。我需要修改這個程序,以便如果用戶輸入像'X'這樣的字符,程序應該關閉輸入窗口並退出程序。我不知道我該怎麼做。 我寫的代碼如下終止寫入操作並關閉C++中的文件
#include <iostream>
#include <fstream>
#include <string>
using std::cout;
using std::cin;
using std::endl;
int main()
{
std::ofstream outputFile;
outputFile.open("C:\\UseCr\\pp\\qt_projects\\test.txt");
string sInput;
cout << "Please Enter the Text ";
outputFile << sInput << endl;
std::ifstream outputFile;
output.close();
return 0;
}
你想從'stdin'輸入?我很困惑你的投入應該來自哪裏。 – erip
如果你不知道,堆棧溢出可能不是正確的地方。尋找初學者的論壇。 – Meier