这个是为什么?输出了男子组
//按照你的试了一遍,答案是"可以参加女子组决赛"
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("不能参加决赛");
}