问答详情
源自:4-4 Java条件语句之嵌套 if

what is the point,god?

what is the point,god?

    int score=94;
    String sex="女";
    if(score>80){
      if(sex.equals("男")){
        {System.out.println("进入男子决赛");}
        else
        {System.out.println("进入女子决赛");}
                          }
    }else
    {System.out.println("淘汰");}


提问者:xfuner 2016-05-28 18:12

个回答

  • 苏格麦3382076
    2016-05-28 18:35:29
    已采纳

    第四行后面多了一个“{”,第七行后面一个“}”

  • xfuner
    2016-05-28 18:37:02

    好的,知道了。之前是我理解有误,谢谢!