问答详情
源自:7-1 编程练习

为什么这个会提示类型出错呢

/85/1598/BDFi/HelloWorld.java:17: error: bad operand types for binary operator '>='
           if((a[i]<=100.0)&&(a>=0)&&(count<=3)){
                               ^
 first type:  int[]
 second type: int

这个是报错

提问者:smile桐宫之囚 2017-01-29 15:23

个回答

  • 白仔
    2017-01-29 19:52:26

    数组a的元素都是整型,你却和100.0相比较,这两个数的类型不同