问答详情
源自: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.print("参加女子组决赛");

            }

            else{

                System.out.println("参加男子组决赛");

            }

            

        }

        else{

            System.out.println("不能参加决赛");

        }

        

        

}

}


提问者:qq_慕用9002516 2019-07-18 22:01

个回答

  • 大蒙蒙
    2019-07-19 17:46:02

    System.out.print("参加女子组决赛");

    这里有错误 println

  • qq_慕用9002516
    2019-07-18 22:07:59

    public class HelloWorld {

        public static void main(String[] args) {

    int score = 94;

    String sex = "女";

            if(score>80){

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

                    System.out.print("参加女子组决赛");

                }

                else{

                    System.out.println("参加男子组决赛");

                }

                

            }

            else{

                System.out.println("不能参加决赛");

            }       

            

    }

    }


  • qq_慕用9002516
    2019-07-18 22:07:32

    找到错了