统计给定文本文件中汉字的个数。
Input
输入文件首先包含一个整数n,表示测试实例的个数,然后是n段文本。
Output
对于每一段文本,输出其中的汉字的个数,每个测试实例的输出占一行。
[Hint:]从汉字机内码的特点考虑~
Sample Input
2 WaHaHa! WaHaHa! 今年过节不说话要说只说普通话WaHaHa! WaHaHa! 马上就要期末考试了Are you ready?
Sample Output
14 9 // 详见代码
1 #include<stdio.h> 2 #include<string.h> 3 int main() 4 { 5 int n, c, len; 6 char text[1000]; 7 scanf("%d ", &n); 8 while(n--) 9 { 10 c=0; gets(text); len=strlen(text); 11 for(int i=0;i<len;i++) 12 if(text[i]<0) // 计算机中,补码第一位是符号位,0表示正数,1表示负数. 13 c++; // 汉字一般占用2个字节,且其字节第一位为1. 14 printf("%d\n", c/2); 15 } 16 return 0; 17 }
原文地址:https://www.cnblogs.com/goldenretriever/p/10356871.html
时间: 2024-11-13 11:37:49