代碼
提交代碼
public class StringMethod5 {
public static void main(String[] args) {
String str = "HELLO world";
String s = str.toLowerCase();
System.out.println("字符串str為轉換為小寫后為:" + s);
String s1 = s.toUpperCase();
System.out.println("字符串s為轉換為大寫后為:" + s1);
}
}
運行結果