return 0;
表示成功返回,可有可无,
cout和〈〈是关联的
#include 中国其实和#include 是一样的
while ( cin >> word )这里没有问题,条件符合就可以了
用 { } 花括号括起来 cout << "word read is:" << word << '\n';
cout << "ok: nomre words to read: bye!\n";
这两个语句.,这里怎么说呢,如果你想While和下面两个语句关联的话就用{},不想的话就免了
输出语句貌似要用endl结束,这里就要看你想不想换行了
#include
#include
using namespace std;
int main()
{
string word;
while(cin>>word)//直到你输入的是0为止
cout << "word read is:" << word << '\n';
cout << "ok: nomre words to read: bye!\n";
system("pause");
},这个朋友写的程序可以说是最标准的
我只是综合大家的答案来发表一我的愚见,请不要笑话哦,呵呵,我的
--------------------next---------------------
阅读(959) | 评论(0) | 转发(0) |