String[] letters = {"A", "B", "C", "D", "E", "F", "G", "H", "I", "L"};
Scanner inp = new Scanner(System.in);
String input = (inp.nextLine());
String[] cord = input.split("");
for(int x = 0; x < 10; x++)
if(letters[x] == cord[1])
System.out.println("Fk yeah!");
爲什麼FK呀!如果我輸入A-L字母之一,就不會發生?字符串不等於字符串?
你確定'cord'實際上只是字母而沒有空白嗎? – 2011-08-20 00:43:50
也可以是大寫與小寫 – Jody
是的,我相信100%。不,他們都是大寫。 –