下列程序的运行结果是【 】。 public class Test { public static void main (String args[]) { String s1="hello!"; System.out.println (s1.toUpper

admin2010-12-17  29

问题 下列程序的运行结果是【  】。
public class Test {
public static void main (String args[]) {
String s1="hello!";
System.out.println (s1.toUpperCase());
}}

选项

答案HELLO!

解析 在String类的常用方法中,toUpperCaee()方法将当前字符串中的所有小写字母转化成大写,其他字符保持不变。
转载请注明原文地址:https://kaotiyun.com/show/Ta9p777K
0

最新回复(0)