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

== > 这个>是起什么作用的

        three=one+tuo;

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

        three +=one;

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

        three -=one;

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

        three *=one;

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

        three /=one;

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

        three %=three;

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


提问者:a萧萧兮易水寒 2015-06-10 13:56

个回答

  • 赐尚
    2015-06-21 15:27:23

    后面为什么还要+three  啊   

  • 伊兮尘昔
    2015-06-10 18:21:02

    没作用就是个字符串