Java從鍵盤輸入數組可以通過以下幾種方式實現:
1. 使用Scanner類:
`java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("請輸入數組的長度:");
int length = scanner.nextInt();
int[] array = new int[length];
System.out.println("請輸入數組的元素:");
for (int i = 0; i < length; i++) {
array[i] = scanner.nextInt();
}
System.out.println("輸入的數組為:");
for (int num : array) {
System.out.print(num + " ");
}
}
上述代碼中,首先使用Scanner類獲取用戶輸入的數組長度,然后創建一個對應長度的整型數組。接下來,通過循環獲取用戶輸入的每個數組元素,并將其存入數組中。遍歷數組并輸出。
2. 使用BufferedReader類:
`java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
System.out.print("請輸入數組的長度:");
int length = Integer.parseInt(reader.readLine());
int[] array = new int[length];
System.out.println("請輸入數組的元素:");
for (int i = 0; i < length; i++) {
array[i] = Integer.parseInt(reader.readLine());
}
System.out.println("輸入的數組為:");
for (int num : array) {
System.out.print(num + " ");
}
}
上述代碼中,通過BufferedReader類實現從鍵盤讀取用戶輸入。首先創建一個BufferedReader對象,然后使用readLine()方法獲取用戶輸入的數組長度,并將其轉換為整型。接下來,創建一個對應長度的整型數組,并通過循環獲取用戶輸入的每個數組元素。遍歷數組并輸出。
3. 使用Console類(僅適用于命令行環境):
`java
import java.io.Console;
public class Main {
public static void main(String[] args) {
Console console = System.console();
if (console == null) {
System.out.println("無法獲取Console對象,請在命令行環境下運行程序。");
return;
}
System.out.print("請輸入數組的長度:");
int length = Integer.parseInt(console.readLine());
int[] array = new int[length];
System.out.println("請輸入數組的元素:");
for (int i = 0; i < length; i++) {
array[i] = Integer.parseInt(console.readLine());
}
System.out.println("輸入的數組為:");
for (int num : array) {
System.out.print(num + " ");
}
}
上述代碼中,通過System.console()方法獲取Console對象,然后使用readLine()方法獲取用戶輸入的數組長度,并將其轉換為整型。接下來,創建一個對應長度的整型數組,并通過循環獲取用戶輸入的每個數組元素。遍歷數組并輸出。
以上是三種常用的從鍵盤輸入數組的方式,你可以根據具體需求選擇適合的方法來實現。
千鋒教育擁有多年IT培訓服務經驗,開設Java培訓、web前端培訓、大數據培訓,python培訓、軟件測試培訓等課程,采用全程面授高品質、高體驗教學模式,擁有國內一體化教學管理及學員服務,想獲取更多IT技術干貨請關注千鋒教育IT培訓機構官網。