代码
提交代码
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); } }
运行结果