我不熟悉Java,并且在HackerEarth上遇到了这个问题。我只想了解第二个System.out.println();做。谢谢!
import java.util.Scanner;
public class NumbersInRange {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
// Get L and R from the input
int L = s.nextInt();
int R = s.nextInt();
// Write here the logic to print all integers between L and R
for (int i = L; i <= R; i++)
System.out.print(i + " ");
System.out.println();
s.close();
}
}
输入:
L = 5, R = 10
输出:
5 6 7 8 9 10
答案 0 :(得分:0)
println()
调用在循环完成后(在包含整数的行的末尾)打印换行符。
如果println()
不存在,并且代码尝试打印其他内容,则它将与整数出现在同一行。