怎么将两个变量同时输出?
system.out.println(a+" "+b);
用 + 号连接, 有两个意思, 左右为数字的时候 为加, 左右其中一个是字符串的时候,为拼接。
中间加上字符串
System.out.println(a+b);