要让Java输出不换行,可以使用System.out.print()
方法代替System.out.println()
方法。
示例代码如下:
public class Main {
public static void main(String[] args) {
System.out.print("Hello, ");
System.out.print("world!");
}
}
运行以上代码将输出:Hello, world!
,而不会换行。