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

为什么第七行加个int 声明,代码就报错

public class HelloWorld{
    public static void main(String[] args) {
        int one = 10 ;
        int two = 20 ;
        int three = one + two ;
        System.out.println(""+three);
        int three += one;
        System.out.println(""+three);
         three -= one;
        System.out.println(""+three);
         three *= one;
        System.out.println(""+three);
        three /= one;
        System.out.println(""+three);
        three %= one;
        System.out.println(""+three);
        
       

提问者:慕移动7222284 2019-02-16 04:08

个回答

  • 迗迗姠丄
    2019-02-16 05:10:05
    已采纳

    第5行已经申明过,当然不能重复申明了。变量只能一次申明,赋值才允许多次的。