java輸出換行的方法是什么

小億
288
2024-03-20 17:03:17

在Java中,輸出換行可以采用以下幾種方法:

  1. 使用System.out.println()方法:
System.out.println("Hello, World!");
System.out.println("This is a new line.");
  1. 使用System.out.print()方法結(jié)合使用轉(zhuǎn)義字符"\n":
System.out.print("Hello, World!\n");
System.out.print("This is a new line.\n");
  1. 使用System.out.printf()方法結(jié)合使用轉(zhuǎn)義字符"\n":
System.out.printf("Hello, World!%n");
System.out.printf("This is a new line.%n");

以上方法都可以在輸出字符串后換行。

0