1 回答
已采纳
guozhchun
TA贡献103条经验 获得超76个赞
使用System.out.print然后里面使用“\n”换行符即可。
例如:
int a = 3; int b = 4; System.out.print(a + "\n" + b);
会输出
3 4
再如:
System.out.print("AAA\nBB");
会输出
AAA BB
添加回答
举报
0/150
提交
取消