C++ 问题,从键盘输入字符串,输入'end'时结束并保存到data.txt文件中,然后结束
C++问题,从键盘输入字符串,输入'end'时结束并保存到data.txt文件中,然后结束磁盘本身没有data.txt这个文件。望高手解答。谢了分行输入也可以的那种。如K...
C++ 问题,从键盘输入字符串,输入'end'时结束并保存到data.txt文件中,然后结束
磁盘本身没有data.txt这个文件。
望高手解答。谢了
分行输入也可以的那种。
如
Kwangwoon Univ.
Computer engineering
end.
这样输入之后就有
Kwangwoon Univ.
Computer engineering
保存在data.txt中 展开
磁盘本身没有data.txt这个文件。
望高手解答。谢了
分行输入也可以的那种。
如
Kwangwoon Univ.
Computer engineering
end.
这样输入之后就有
Kwangwoon Univ.
Computer engineering
保存在data.txt中 展开
2个回答
展开全部
这是我自己编写的程序,在Code Blocks 里编译通过,可以实现你说的功能。
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main(){
ofstream outfile;
outfile.open("text.txt",ofstream::out);
if(!outfile){
cerr<<"error:unable to open output file:"<<endl;
return -1;
}
string temp;
cin>>temp;
while(temp!="end"){
outfile<<temp<<" ";
cin>>temp;
}
return 0;
}
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main(){
ofstream outfile;
outfile.open("text.txt",ofstream::out);
if(!outfile){
cerr<<"error:unable to open output file:"<<endl;
return -1;
}
string temp;
cin>>temp;
while(temp!="end"){
outfile<<temp<<" ";
cin>>temp;
}
return 0;
}
展开全部
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
string s;
ofstream of;
of.open("data.txt");
cin>>s;
while(s!="end")
{
of<<s<<(char)getchar();
cin>>s;
}
of.close();
return 0;
}
#include<fstream>
#include<string>
using namespace std;
int main()
{
string s;
ofstream of;
of.open("data.txt");
cin>>s;
while(s!="end")
{
of<<s<<(char)getchar();
cin>>s;
}
of.close();
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |