高等继续教育 / Java程序设计
正确率:认证
题型描述: 编程题
读下面程序,写出程序主要功能,并给出最后屏幕输出结果。
public class String2 {
public static void main(String[] args) {
char ch = 't';
if (ch>='a' && ch<='z')
ch=(char)('A'+ch-'a');
System.out.println("ch = "+ch);
}
}
参考答案: