可以帮忙写一下java代码么,初学,谢谢!!
发布网友
发布时间:2022-05-24 17:00
我来回答
共1个回答
热心网友
时间:2023-10-22 07:47
class T {
public static void main(String[] args) {
String str = "";// 存储键盘录入值
Scanner in = new Scanner(System.in);
while (!str.equals("end")) {// 当输入end时结束循环
str = in.nextLine();// 获取录入值
StringBuilder sb = new StringBuilder(str);
for (int i = 0; i < sb.length(); i++) {
String s = sb.substring(i, i+1);
if(s.matches("[A-Z]"))
sb.replace(i, i+1, s.toLowerCase());
if(s.matches("[a-z]"))
sb.replace(i, i+1, s.toUpperCase());
if(s.matches("[0-9]"))
sb.replace(i, i+1, "*");
}
System.out.println(sb.toString());
}
in.close();
}
}