65,210
社区成员
发帖
与我相关
我的任务
分享
while(cin>>word) {
cout < <"word read is: \n" < <word ; }
cout < <"there is no more word.";
return 0;
}
......
while(cin>>word){
cout < <"word read is: \n" < <word ;
cout < <"there is no more word."; }//加"{"和"}"
return 0;
}