为什么这个做题结果和Eclipse的结果不同,这里的不能输出
我只想讲这个代码为什么在我的Eclipse上是正确的,在这里输出是错误的? public static void main(String[] args){ int score = 94; String sex = "女"; if(score>80){ if(sex.equals("女")){System.out.println("进入女子决赛组");} else{ System.out.println("进入男子决赛组"); }}else{System.out.println("淘汰");}}}