标签:style blog http color io for
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2030
题目大意:对输入的一个字符里面找出汉字的个数,这里的解题技巧是:汉字的ascll码是负数,还有要注意的是每个汉字占2个字节!!
1 #include <stdio.h> 2 #include <string.h> 3 int main () 4 { 5 char ch[1050]; 6 int n,i,sum; 7 while (scanf("%d",&n)!=EOF) 8 { 9 gets(ch); 10 while (n--) 11 { 12 sum=0; 13 gets(ch); 14 int l=strlen(ch); 15 for (i=0; i<l; i++) 16 if (ch[i]<0) 17 sum++; 18 printf ("%d\n",sum/2); 19 } 20 } 21 }
标签:style blog http color io for
原文地址:http://www.cnblogs.com/qq-star/p/3854834.html