fstream fin;
string out;
fin.open("abc.txt");
fin>>out;
cout<<out;
//////////////////////////////
这样写的话,只能读到第一个空格符之前//为什么不是最后一个字符串而是第一个呢、?
换成:
while(fin>>out)
{
cout<<out<<endl;
}
/////////////////////////////
才能完全显示txt的内容。