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

three=one+two;有什么用?

public class HelloWorld{

    public static void main(String[] args) {

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

     

        System.out.println("three+=one==>"+40);

        System.out.println("three-=one==>"+30);

        System.out.println("three*=one==>"+300);

同样可以输出

three+=one==>40
three-=one==>30
three*=one==>300

提问者:昊宸丨 2017-06-30 12:47

个回答

  • 采臣以北
    2017-07-08 06:43:38

    这是运算得出来的结果,three是一个变量,而不是常量,变量值可以重新被覆盖的。

  • Flzz
    2017-06-30 12:53:24

    那是因为输出的就是40;30;300;  你把这些数分别换成three+=one;three-=one;three*=one;试试,