/* 时间:2014.2.1 目的: 题目1182:统计单词ac.jobdu.com/problem.php?pid=1182 */ #include <stdio.h> int main() { char s[200]; int i,cnt; while(gets(s)) { cnt = 0; for(i=0;s[i];i++) { if(s[i] == ‘ ‘ && cnt) { printf("%d ",cnt); cnt = 0; } if(s[i] == ‘.‘) printf("%d\n",cnt); if((s[i]>64&&s[i]<91)||(s[i]>96&&s[i]<123)) cnt++; } } } /* --------------------------- hello how are you. 思路;1.遍历一次数组,顺便输出 5 3 3 3 --------------------------- */
相关文章
- 12-17统计s="hello alex alex hello haiyan cc haiyan com"中每个单词的个数
- 12-17历史命令~/.bash_history,查看所有别名alias,命令执行顺序,命令行常用快捷键,输入输出重定向,wc统计字节单词行数
- 12-17python 统计字符串每个单词出现的次数
- 12-17写一个 bash 脚本以统计一个文本文件 words.txt 中每个单词出现的频率。
- 12-17统计文本中字符数和单词数
- 12-17python37实现1-统计文本中出现次数最多的单词
- 12-17codevs1040 统计单词个数
- 12-17单词统计
- 12-17c语言中统计单词数目
- 12-17P1308 [NOIP2011 普及组] 统计单词数