在Java中,可以使用\n
或者\r\n
来表示换行。例如:
System.out.println("Hello World!");
System.out.println("This is a new line.");
输出:
Hello World!
This is a new line.
或者使用System.out.print()
方法,然后在需要换行的地方使用System.out.println()
方法。例如:
System.out.print("Hello World!");
System.out.println("This is a new line.");
输出:
Hello World!This is a new line.
注意:在Windows环境下,使用的换行符是\r\n
,在Unix环境下,使用的换行符是\n
。在大部分操作系统中,Java会根据运行环境自动选择正确的换行符。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: java中score是什么意思