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

        }else{

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

        }

    }else{

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

    }

        

        

        

        

        

}

}


提问者:qii_ 2020-02-18 18:13

个回答

  • qq_慕后端5443223
    2020-02-29 21:05:12

    去掉第六行的=

  • qq_慕语
    2020-02-23 15:39:02

    两个else错误了

  • 慕勒8265443
    2020-02-22 02:18:22

    if(sex.equals=("女"))改为if(sex=女)

  • 慕沐5185546
    2020-02-19 12:12:50

    你第8行的 } ,没有一个 { 对应

  • 慕勒1174818
    2020-02-18 20:37:36

    if(sex.equals("女"))