问答详情
源自:3-3 Java中的赋值运算符

java中的赋值运算符怎么用啊


int three = 30;

int one = 10;

int three+=one;

System.out.println(three);

这样哪里错了?大神们帮帮忙吧,非常感谢

提问者:波克基斯626 2016-06-12 10:37

个回答

  • logK
    2016-06-12 10:57:31
    已采纳

    public class chesi {
        
        public static void main(String[] args) {
        
        int three = 30;

        int one = 10;

        three += one;

        System.out.println(three);
            
            
            
        }
        

        
    }

      three += one;

    这一句使用的时候不用重复定义类型(int)

  • qiqi_shawnee
    2016-06-12 10:58:14

    把第三行啊int去掉,不是已经声明过three了吗