博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
494 - Kindergarten Counting Game
阅读量:5296 次
发布时间:2019-06-14

本文共 1091 字,大约阅读时间需要 3 分钟。

 

  

Everybody sit down in a circle. Ok. Listen to me carefully.

``Woooooo, you scwewy wabbit!''

Now, could someone tell me how many words I just said?

 

Input and Output

Input to your program will consist of a series of lines, each line containing multiple words (at least one). A ``word'' is defined as a consecutive sequence of letters (upper and/or lower case).

 

Your program should output a word count for each line of input. Each word count should be printed on a separate line.

 

Sample Input

 

Meep Meep!I tot I taw a putty tat.I did! I did! I did taw a putty tat.Shsssssssssh ... I am hunting wabbits. Heh Heh Heh Heh ...

 

Sample Output

 

27109
 
C++语言:
01
#include <iostream>
02
#include <cstdio>
03
using
namespace
std;
04
05
int
main()
06
{
07    
int
cnt
=
0;
08    
int
inword
=
0;
09    
for(
char
c; (
c
=
getchar())
!=
EOF;)
10        
if(
isalpha(
c))
11         
inword
=
1;
12         
else
if(
'\n'
==
c)
13        
{
14            
printf(
"%d
\n
"
,
cnt
+
inword);
15            
cnt
=
0;
16            
inword
=
0;
17        
}
18         
else
if(
inword)
19         
{
20            
++
cnt;
21            
inword
=
0;
22         
}
23
24    
return
0;
25
}

转载于:https://www.cnblogs.com/invisible/archive/2011/11/04/2236749.html

你可能感兴趣的文章
国产手机的路还很长
查看>>
08-使用for循环输出杨辉三角(循环)
查看>>
分支限界法(二)——装载问题(转)
查看>>
phpcms导航菜单的写法
查看>>
网页中二维码识别规则
查看>>
小tips:node起一个简单服务,打开本地项目或文件浏览
查看>>
把vux中的@font-face为base64格式的字体信息解码成可用的字体文件
查看>>
十四、详述 IntelliJ IDEA 提交代码前的 Code Analysis 机制
查看>>
佛祖保佑 永无BUG ; 心外无法 法外无心
查看>>
高斯模糊原理,算法
查看>>
Python 主、次(major,minor)版本号获取
查看>>
lucnen 中文分词器 和 删除 和修改词库
查看>>
关于mui前端传值,springboot后台接收值的问题
查看>>
MJRefresh注意事项
查看>>
BZOJ5120 无限之环(费用流)
查看>>
AtCoder Grand Contest 032
查看>>
linux下文件的复制、移动与删除
查看>>
灵性的笔尖勾勒幻想的国度,找寻梦想的脚步!用我的思想创建一个芬芳的世界!...
查看>>
裸机实验中连接脚本的错误
查看>>
CC2500 pcb调试记录
查看>>