问答详情
源自:3-5 Java中的逻辑运算符

利用if语句

利用if语句来判定通过与否,不需要自己判断,如何编写

提问者:岁月静好15 2016-05-04 11:15

个回答

  • 慕移动9181930
    2022-03-26 04:05:52

    把你的代码贴出来呀

  • 阳光缓缓弥漫整个午后
    2016-05-28 23:48:24

    // 定义常量
    final String AGREE = "通过";
    // 定义判断变量
    String a = "通过";
    String b = "不通过";
    
    // 如果任意一个变量等于常量通过,且两个变量的值相同,则判断为通过
    if(AGREE.equals(a) && a.euqals(b)){
      System.out.println("通过");
    }else{
      System.out.println("未通过");
    }


  • 慕粉3301979
    2016-05-04 11:20:36

    str a="通过";

    str b="未通过";

    if(a&&b){

    System.out.println("通过")

    }

    else{

    System.out.println("未通过")

    }