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

这个为什么运行失败啊,他告诉我只有else without if???

public class HelloWord {

    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("淘汰");

        }

        }

}


提问者:顾奈1178369 2020-10-10 16:43

个回答

  • weixin_慕沐7197996
    2020-10-10 16:54:06
    已采纳

     if (sex.equals('男')) ; 将 ; 去掉即可

  • 慕沐00828743
    2021-07-13 12:00:14

    双引号错了还有;

  • 慕慕7175546
    2020-11-22 17:20:17

    只能有一个else,一个if,其他用else if

  • 慕工程3535675
    2020-10-18 11:09:53

    还有('男')里的符号 '' 换成 ""