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

3-3的赋值题

这个该怎么写?580fed0a000118da06130960.jpg

提问者:小小的我3 2016-10-26 07:38

个回答

  • 浪子膏啊
    2016-10-26 08:59:38

        three = one + two;
        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);
        three %= one;
        System.out.println(three);