在Java中,可以使用Scanner類來從控制臺獲取輸入的數組值。以下是一個示例代碼:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the size of the array: ");
int size = scanner.nextInt();
int[] arr = new int[size];
System.out.println("Enter the elements of the array:");
for (int i = 0; i < size; i++) {
arr[i] = scanner.nextInt();
}
System.out.println("The entered array is:");
for (int i = 0; i < size; i++) {
System.out.print(arr[i] + " ");
}
scanner.close();
}
}
在這個例子中,用戶被要求輸入數組的大小和元素,并且輸入的數組值最后被打印出來。