这个程序简短而甜蜜,如果字母是大写或小写,或者无效,只有计算机输出。但是好像跳过了代码直接去"You did not type a valid input"
. 如何让它识别其他选项并正常工作?
这是代码:
import java.util.*;
public class StringTest2 {
public static void main(String[] args) {
System.out.println("uppercase (U/u) or lowercase (L/l)?");
Scanner console = new Scanner(System.in);
String input = console.nextLine();
if (input == "U" || input == "u") {
System.out.println("uppercase!" + input);
} else if (input == "L" || input == "l") {
System.out.println("lowercase!" + input);
} else {
System.out.println("You did not type a valid input " + input);
}
}
}