下面是我的代码,我觉得,更简化了一点儿
[AppleScript] 纯文本查看 复制代码 import java.util.Scanner;
public class test {
public static void main(String[] args) {
// 创建键盘录入
System.out.println("输入一个代表星期的字母");
String s = new Scanner(System.in).nextLine();
// 创建两个字符数组
String[] str1 = { "Mon", "Tues", "Wed", "Thur", "Fri", "Sat", "Sun" };
String[] str2 = { "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日" };
String result = null;
// 遍历数组,找出对应的
for (int x = 0; x < str1.length; x++) {
if (s.equalsIgnoreCase(str1[x])) {
result = str2[x];
}
}
if (result != null) {
System.out.println(result);
} else {
System.out.println("输入的星期不存在");
}
}
} |