C++缠着程序用户从键盘输入若干行字符串,每输入一行就将其写入一个文本文件中,直到用户输入end才 5
C++缠着程序用户从键盘输入若干行字符串,每输入一行就将其写入一个文本文件中,直到用户输入end才终止输入,输入完毕后,再从文本文件中按行读取数据并输出到屏幕上。用C++...
C++缠着程序用户从键盘输入若干行字符串,每输入一行就将其写入一个文本文件中,直到用户输入end才终止输入,输入完毕后,再从文本文件中按行读取数据并输出到屏幕上。用C++语言写出程序代码
展开
2个回答
展开全部
#include<iostream>
#include<fstream>
#include<string>
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();
}
望采纳,谢谢
#include<fstream>
#include<string>
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();
}
望采纳,谢谢
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询