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

为什么最后是+three啊

为什么最后是+three啊


提问者:情话说的那么好听 2018-07-15 15:01

个回答

  • 慕无忌7348813
    2018-07-23 21:34:43

    你输出一段代码 做的运算 输出算式 就要在后面加一个加号 才能输出算式结果 +three中three是计算运行后的three 是你想得到的

  • HuangGongsui
    2018-07-22 14:48:19

    这个代码输出了两段内容,第一段“”,第二段是three的值,加号表示连接。第一段为空值,加不加都可以的。

  • 慕移动3101931
    2018-07-16 11:44:33

    public class HelloWorld{

        public static void main(String[] args) {

       int one = 10 ;

            int two = 20 ;

            int three = 0 ;

            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);

    }

    }


  • 哈我哈我
    2018-07-15 20:51:55

    代表两字符串的链接,你前面加的应该都是字符串类型的吧

  • 慕瓜453346
    2018-07-15 15:31:25

    能给出代码吗???