C++缠着程序用户从键盘输入若干行字符串,每输入一行就将其写入一个文本文件中,直到用户输入end才

2024-12-02 22:46:56
推荐回答(2个)
回答1:

#include
#include
#include
using namespace std;
int main() {
string temp;
ofstream out("out.txt");
//写高携祥入
cout << "输入字符开始写入隐耐:";
do{
getline(cin, temp);
out << temp << endl;
} while (temp != "end");
//读取
out.close();
ifstream in("out.txt");
cout << "开始读取写入戚搏的字符:" << endl;
while (getline(in, temp)) {
cout << temp << endl;
}
in.close();
}

望采纳,谢谢

回答2:

缠着 二字用得好!