标签:mit ota other 实例 ssi 表达 说话 考试 使用
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 40153 Accepted Submission(s):
21872
汉字机内码在计算机的表达方式的描述是,使用二个字节,每个字节最高位一位为1。
计算机中, 补码第一位是符号位, 1 表示为 负数,
所以 *汉字机内码的每个字节表示的十进制数都是负数*
1 #include<stdio.h> 2 #include<string.h> 3 int main() 4 { 5 int n,i,j; 6 char ch[10000]; 7 scanf("%d",&n); 8 getchar(); 9 while(n--) 10 { 11 j=0; 12 gets(ch); 13 for(i=0;i<strlen(ch);i++) 14 { 15 if(ch[i]<0) 16 j++; 17 } 18 printf("%d\n",j/2); 19 } 20 return 0; 21 }
标签:mit ota other 实例 ssi 表达 说话 考试 使用
原文地址:http://www.cnblogs.com/Rainary/p/6055318.html