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

多重循环问题

public class Shuibian {
 public static void main(String[] args) {
 String today="周末";
 String weather="晴朗";
 
 if(today.equals(today)){
  if(today.equals(weather)){
   System.out.println("室外游玩");
  }else{
   System.out.println("室内游玩");
  }
 }else{
  System.out.println("工作");
 }
    
       
 }

为何运行结果是室内游玩呢?这样写不对吗?

提问者:我是浪子0 2016-10-24 19:36

个回答

  • weibo_丿横竖弯钩_04224973
    2016-10-24 20:03:09
    已采纳

    你的today本来定义为周末,第一个判断if就是正确的,跳入。在第二个判断,today为周末,weather为晴朗,不相同,则第二个判断错误,跳入else,输出室内游玩。

  • 青山洞主
    2016-10-24 22:30:50

    是想从外部输入,进行判断吗?是的话,就要修改代码了

  • 595152253
    2016-10-24 20:59:38

    第二个if语句中的条件代码不对,应该写成if(weather.equals(weather))

  • 慕粉8586242
    2016-10-24 20:17:20

    一个today判断,一个weather判断


  • 慕粉8586242
    2016-10-24 20:16:15

    public class jj { 

    public static void main(String[] args) {

    String today="周末";

    String weather="晴朗";

     

    if(today.equals("周末")){

     if(weather.equals("晴朗")){

      System.out.println("室外游玩");

     }else{

      System.out.println("室内游玩");

     }

    }else{

     System.out.println("工作");

    }

        

           

    }


    }