为了账号安全,请及时绑定邮箱和手机立即绑定

为啥运行结果是可以参加决赛?

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("进入女子组决赛");        }    }              	}}


正在回答

3 回答

因为你满足条件输出的内容就是可以进入决赛啊。score的值=94满足,sex的值=女满足,所以System.out.println("可以参加决赛")。反之输出女子决赛。懂了吧。

0 回复 有任何疑惑可以回复我~

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("未进入决赛");
        }
     
    }
}

0 回复 有任何疑惑可以回复我~

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("可以参加决赛");

            }    

            

        }                 

        

    }

    

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为啥运行结果是可以参加决赛?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信