C++ 问题,从键盘输入字符串,输入✀end✀时结束并保存到data.txt文件中,然后结束

2024-12-30 19:04:41
推荐回答(2个)
回答1:

这是我自己编写的程序,在Code Blocks 里编译通过,可以实现你说的功能。
#include
#include
#include
using namespace std;
int main(){
ofstream outfile;
outfile.open("text.txt",ofstream::out);
if(!outfile){
cerr<<"error:unable to open output file:"< return -1;
}
string temp;
cin>>temp;
while(temp!="end"){
outfile< cin>>temp;
}
return 0;
}

回答2:

#include
#include
#include
using namespace std;

int main()
{
string s;
ofstream of;
of.open("data.txt");
cin>>s;
while(s!="end")
{
of< cin>>s;
}
of.close();
return 0;
}