这是我自己编写的程序,在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:"<
}
string temp;
cin>>temp;
while(temp!="end"){
outfile<
}
return 0;
}
#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;
}