问答详情
源自:3-4 Java中的比较运算符

我想知道哪里错了啊


http://img3.mukewang.com/5bf2c62f0001e88e07801040.jpg

提问者:一切努力都有回报 2018-11-19 22:18

个回答

  • 米基
    2019-01-27 03:01:36

    public class HelloWorld{

        public static void main(String[] args) {

    int a=16;

    double b=9.5;

    String str1="hello";

    String str2="imooc";

    System.out.println("a等于b:" + (a  == b));

    System.out.println("a大于b:" + (a  > b));

    System.out.println("a小于等于b:" + (a  <= b));

    System.out.println("str1等于str2:" + (str1  == str2));

    }

    }


  • FlowerSeven
    2018-12-25 14:31:18

    把比较运算符填写进去就好了。

  • 慕用6423838
    2018-12-02 22:45:44

    public class HelloWorld{

        public static void main(String[] args) {

    int a=16;

    double b=9.5;

    String str1="hello";

    String str2="imooc";

    System.out.println("a等于b:" + (a == b)); //false

    System.out.println("a大于b:" + (a > b)); //true

    System.out.println("a小于等于b:" + (a <= b)); //false

    System.out.println("str1等于str2:" + (str1 == str2)); //false 

    }

    }


  • 慕仰0835374
    2018-11-23 13:47:13

    原题复制过去都不做更改当然报错,原题是不带比较运算符的,

    (a   b)和(str1   str2)都没有运算符,共4个处错误

  • 罐罐爸
    2018-11-22 14:10:08

    你的输出语句里是的 (a  b) 这个里面缺少了运算符,所以,报错

  • 亚平宁的微风
    2018-11-19 22:56:29

    你的输出语句里是不合法的 (a  b) 这个是不合法的