public class StringToUpperCase {
public static void main(String[] args) {
String s = "Hello World";
System.out.println(s);
System.out.println(s.toUpperCase());
}
}
同理s.toLowerCase()可以把大写转小写
相关文章:
public class StringToUpperCase {
public static void main(String[] args) {
String s = "Hello World";
System.out.println(s);
System.out.println(s.toUpperCase());
}
}
同理s.toLowerCase()可以把大写转小写
相关文章: