在Java中,可以使用System.out.print()
方法來輸出不換行的內容。例如,要循環輸出數字1到10,可以使用如下代碼:
for (int i = 1; i <= 10; i++) {
System.out.print(i + " ");
}
輸出結果為:
1 2 3 4 5 6 7 8 9 10
在每次循環中,使用System.out.print()
方法輸出數字和空格,并沒有使用System.out.println()
方法,這樣就可以實現不換行的效果。