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

那错了??????好迷啊

public class HelloWorld {

    public static void main(String[] args) {

int score = 94;

String sex = "女";

        if (score > 80){

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

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

            }else{

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

            }

        }else{

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

           }

        }

        

        

        

        

        

        

        

        

        

}

}


提问者:来自木叶的宇智波鼬 2021-09-24 19:10

个回答

  • 瘸拐李
    2021-12-03 18:15:59

    你的最后一个println少了一个t

  • weixin_慕仔7477612
    2021-09-29 17:00:41

    最后一行的}去掉就行

  • qq_慕仰4465675
    2021-09-24 20:10:52

    package welcome;


    public class we {

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


               }


            }


    }