标签:输入输出 main span font out str ring div nbsp
每次调用println都会在新的一行上显示输出。
1 public class Main {
2 public static void main(String[] args) {
3 System.out.println("123");
4 System.out.println("456");
5 }
6 }
1 123
2 456
输出之后不换行。例如,System.out.print("Hello");打印“Hello”之后不换行,后面的输出“World”紧跟在字母“o”之后。
1 public class Main {
2 public static void main(String[] args) {
3 System.out.print("Hello");
4 System.out.print("World");
5 }
6 }
1 HelloWorld
标签:输入输出 main span font out str ring div nbsp
原文地址:https://www.cnblogs.com/yangyh26/p/12191860.html