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

结果输出使用+连接,但是输出的却是2个结果的和,而不是分别输出结果

public class HelloWorld{
    public static void main(String[] args) {
        int one = 10 ;
        int two = 20 ;
        int three = 0 ;
        int three1=one+two;
        int four=one-two;
        System.out.println(three1+four);
        
       

提问者:qq_拉美西斯_0 2016-12-29 16:08

个回答

  • 15rjgcw
    2016-12-29 20:57:32

    就是输出两个结果的和。可以像3楼那样加一个空字符,这样就是输出30-10了,或者加\n或\t什么的,

    如System.out.println(three1+"\t"+four);  结果就是30    -10

  • 慕gi哇啦
    2016-12-29 16:41:34

    楼上俩是在扯淡?还是我孤陋寡闻了?

    System.out.println(three1+""+four);

  • weibo_神神静病_0
    2016-12-29 16:21:13

    System.out.println(three1,four);

  • dyd075
    2016-12-29 16:18:34

       System.out.println(three1,four);