您的位置:首页 > 编程语言 > C语言/C++

5.8

2016-03-03 11:20 696 查看
#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;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c++