【发布时间】:2016-12-03 06:23:57
【问题描述】:
class HelloWorld {
public static void main(String args[]) {
int b;
b = 'A';
System.out.write(b);
System.out.write('\n');
System.out.write(97);
System.out.write('\n');
System.out.write(1889);
System.out.write('\n');
}
}
这个程序的输出是
A
a
a
以下行如何产生 a 作为输出。
System.out.write(1889);
【问题讨论】: