hdu2030
思路:汉字机内码在计算机的表达方式的描写是,使用2个字节,每一个字节最高位1位为1。计算机中, 补码第1位是符号位, 1 表示为负数,所以汉字机内码的每一个字节表示的10进制数都是负数,且汉字占用两个字节结果要除以2,不要忘了。
import java.util.*;
class Main{
public static void main(String []args){
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
sc.nextLine();
while(n-->0){
String str=sc.nextLine();
int numb=0;
byte b[]=str.getBytes();//将字符串转化为字节数组
for(int i=0;i<b.length;i++){
if(b[i]<0){
numb++;
}
}
System.out.println(numb/2);
}
}
}
注:代码第10行换成这样:
byte b[]=new byte[str.length()];
b=str.getBytes();
就错了。由于str.length()是字符串的长短,而转化为字节时,1个字符串不1定对应1个字节数,所以错了。注意这个小小细节问题!