输入一些字符串,输出它们的长度。
标签:
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 }
输入一些字符串,输出它们的长度。
输入为多行。第一行N>0表示有N个测试用例,后面有N行,每行包含一个字符串(不超过1000个字符)。
输出为多行,每行对应于一个测试用例。每行的格式为:
case i:lenght=j.
其中i表示测试用例编号(从1开始),j表示相应的字符串长度。
用scanf()读取整数后,第一行的换行符需要处理。可以用文件测试出这个问题来。
标签:
原文地址:http://www.cnblogs.com/pepper/p/4982310.html