[求助]这个程序怎么写可以实现结果
#include <iostream>
#include <string>
using namespace std;
int main()
{
cout<<"下面是测试您输入的单词个数程序"<<endl;
int count=0;
string word;
while (cin>>word)
{
count++;
}
cout<<"您输入的单词数有"<<count<<"个"<<endl;
return 0;
}
在线等待!