为了账号安全,请及时绑定邮箱和手机立即绑定

大神帮忙看看哪里错了

public class HelloWorld {

    public static void main(String[] args) {

int score = 94;

String sex = "女";

        if (score>80){

         if(sex.equals("女")){

        System.out.println("进入女子组决赛");

         }

        else if {

        System.out.println("进入男子组决赛");

        }

        else{

        System.out.println("淘汰");

                 

           }

}

}


正在回答

5 回答

public class HelloWorld {
    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{                                                            //此处错误,else前面缺少一个大括号
          System.out.println("淘汰");
        }
    }
}

1 回复 有任何疑惑可以回复我~

  else if {

        System.out.println("进入男子组决赛");

        }

}

}

else 放到倒数第三个大括号外面


0 回复 有任何疑惑可以回复我~

第9行多了个if

0 回复 有任何疑惑可以回复我~

  else if {

        System.out.println("进入男子组决赛");

        }

把if去掉

0 回复 有任何疑惑可以回复我~

public class HelloWorld {
    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("淘汰");
        }
    }
}

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

大神帮忙看看哪里错了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信