我也是醉了,在eclipse能用,网上却显示错误,麻烦帮我看看怎么一回事
public class ZkDemo {
public static void main(String[] args) {
String sex ="女";
int score = 93;
if (score>80){
if(sex.equals("男")){
System.out.println("进入男子组决赛");
}else{
System.out.println("进入女子组决赛");
; }
}else{
System.out.println("淘汰");
}
}
}