2015-09-21 57 views
0
Scanner scan = new Scanner(System.in); 
System.out.println("Enter three positive integers seperated by spaces, then press enter: "); 
int a = scan.nextInt(); 
int b = scan.nextInt(); 
int c = scan.nextInt(); 

如何讓這個當用戶輸入數字就說明了在同一條線上的問題並沒有下文了嗎?的Java格式

+2

使用'System.out.print',而不是'System.out.println' –

+1

你真幸運! [喬恩斯基特(​​http://stackoverflow.com/users/22656/jon-skeet)編輯您的帖子。 – ashiquzzaman33

回答

2

使用System.out.print()而不是System.out.println()後增加了一個新的生產線。

閱讀每個的javadoc。 println(String)「的行爲就像先調用print(String)然後println()」,所以你應該只使用print(String),如果你不希望將新線做。