我的代码哪儿错了呢?
public class HelloWorld {
public static void main(String[] args) {
int score = 94;
String rst;
String sex = "女";
if (score>80)
{if (sex.equals("女")) rst="进入女子组决赛";
else if (sex.equals("男")) rst="进入男子组决赛";
}
else rst="未进入决赛";
System.out.println(rst);
}
}