码迷,mamicode.com
首页 > 其他好文 > 详细

字符串的长度

时间:2015-11-20 21:30:05      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:

校OJ上字符串处理的题目,有点需要注意

scanf 默认不吃掉后边的回车符 需要用 %*c 吃掉它 或者是用 getchar()

 

 1 #include<stdio.h>
 2 #include<string.h>
 3 int main()
 4 {
 5 #ifndef ONLINE_JUDGE
 6     freopen("in.txt","r",stdin);
 7     freopen("out.txt","w",stdout);
 8 #endif // ONLINE_JUDGE
 9     int N;int case_ = 0;
10     scanf("%d%*c",&N);
11  
12     while(N--)
13     {
14         char in[10000];
15         gets(in);
16         printf("case %d:length=%d.\n",++case_,strlen(in));
17     }
18     return 0;
19 }

 

Problem B: 字符串的长度

Time Limit: 1 Sec  Memory Limit: 16 MB

Description

输入一些字符串,输出它们的长度。

 

Input

输入为多行。第一行N>0表示有N个测试用例,后面有N行,每行包含一个字符串(不超过1000个字符)。

 

Output

输出为多行,每行对应于一个测试用例。每行的格式为:

case i:lenght=j.

其中i表示测试用例编号(从1开始),j表示相应的字符串长度。

 

Sample Input

4 I love China! Do you want to pass this examination? You will succeed finially! Wish you succeed!

Sample Output

case 1:length=13. case 2:length=37. case 3:length=26. case 4:length=17.

HINT

用scanf()读取整数后,第一行的换行符需要处理。可以用文件测试出这个问题来。

Append Code

字符串的长度

标签:

原文地址:http://www.cnblogs.com/pepper/p/4982310.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!