這個哪里錯了 顯示錯誤是equals("?")
int score = 94; String sex = "女"; ? ? ? ?if(score>80) ? ? ? ?if(sex.equals("女"){ ? ? ? ? ? ?System.out.println("進入女子組決賽"); ? ? ? ?} ? ? ? ?else{ ? ? ? ? ? ?System.out.println("進入男子組決賽"); ? ? ? ?} ? ? ? ?else{ ? ? ? ? ? ?System.out.println("淘汰"); ? ? ? ?}}}哪里錯了?
2016-09-24
第一個輸出System,少個大寫的S
2016-09-06
2016-09-06
兩個if之間沒有{ ??