#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
cout<<"Enter words(to stop,type the word done)"<<endl;
char test[20];
int count = 0;
char ch;
int i = 0;
do
{
cin.get(ch);
if (ch == ' ')
{
count++;
test[i] ='\0';
cout << ch;
i=0;
}
else
{
test[i] = ch;
test[i + 1] = '\0';/*一定要追加,strcmp函数遇到'\0'停止比较,或者遇到第一个不同字符进行比较,但是对于此题来讲,
数组test中输入了done后,其下一个位置中的值应该是系统里的垃圾值,因此与“done”不等,所以返回值
并不是0.因此出现了无法跳出循环的情况。*/
cout << ch;
i++;
}
} while (strcmp(test, "done") != 0);
cout << endl<<"You entered a total of " << count << " words.";
return 0;
}