PTA基础编程题目集 7-26 单词长度

题目测试点比较坑,其中空句子需要不输出任何结果方可通过,输出的结尾不能有空格,最开始想用‘\b’删除最后一个空格,结果显示答案错误。改考虑在输出长度前输出空格来处理。代码如下:

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string ss;
	getline(cin, ss);	//读入一整个句子

	if (ss[0] == '.') {
		return 0;			//空句子情况
	}

	int i = 0;
	int count = 0;
	bool newWord = false;	//是否是一个新单词
	bool first = true;		//是否是第一个单词

	while (ss[i] != '\0') {

		if (i == 0) {
			if (ss[i] != ' ') {
				newWord = true;		//第一个字符非空格
			}
		}
		else if (i > 0 && ss[i - 1] == ' ' && ss[i] != ' ') {
			newWord = true;
			count = 0;
		}
		

		count++;

		if (ss[i] == ' ' && newWord == true) {
			if (first) {				//第一个输出前面无空格
				cout << count - 1;
				first = false;
			}
			else cout << " " << count - 1;
			count = 0;
			newWord = false;
		}
		else if (ss[i] == '.' && ss[i - 1] != ' ') {
			if (first) {
				cout << count - 1;
				first = false;
			}
			else cout <<" "<<count - 1;
			break;
		}

		i++;

	}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值