九度题目1182:统计单词

http://ac.jobdu.com/problem.php?pid=1182

2002年华中科技大学计算机研究生机试真题

将输入一行字符串转为单个输入单词,每次输出个数,若最后一个字符是.则结束本行输入

熟悉双重while循环的输入方式

#include <stdio.h>
#include <string.h>

char str[1000];
int main()
{freopen("D:\\1.txt","r",stdin);
	int i;
   while (scanf("%s",str)!=EOF)
   {
	   int len=strlen(str);
       if (str[len-1]=='.')
       {
		   printf("%d\n",len-1);
		   continue;
       }
	   else
		   printf("%d ",len);
	   while (1)
	   {
		   scanf("%s",str);
		   len=strlen(str);
		   if (str[len-1]=='.')
		   {
			   printf("%d\n",len-1);
			   break;
		   }
		   else
		       printf("%d ",len);
	   }     
   }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值