5.8

#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;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值