这是我的代码:
class writedemo {
public static void main(String args[]){
int b;
b=1;
System.out.write(b);
System.out.write('\n');
}
}
我得到的输出是“apl 功能四问题”字符(U+2370)。
但是这段代码有效:
class writedemo{
public static void main(String args[]){
int b;
b='A';
System.out.write(b);
System.out.write('\n');
}
}
它打印字符'A'。有人可以帮帮我吗?我错过了什么吗?
森栏
慕工程0101907
一只斗牛犬
相关分类