0
我很好奇我應該如何去生成用戶給定的特定範圍內的垂直數字列表。JAVA如何生成特定範圍內的數字表?
說我有一個用戶輸入一個低數字和一個高數字,我想顯示這些數字和這些數字之間的每個數字。
import java.util.Scanner;
public class Table {
public static void main(String[] args) {
//Create Scanner
Scanner input = new Scanner(System.in);
//Prompt user to enter low number
System.out.println("Enter the low number ");
int lowNumber = input.nextInt();
//Prompt user to enter high number
System.out.println("Enter the high number");
int highNumber = input.nextInt();
//Create table
for (int i = 1; i <=256; i++){
System.out.print(i);
}
正如你可能會說,我很迷茫。
'爲(INT I = lowNumber;我<= highNumber;我++){' – 4castle
並使用'println'作爲垂直輸出。 – Andreas
謝謝你,工作 – kairi224