JAVA 数组内容从键盘输出
时间: 2024-05-11 19:18:47 浏览: 70
可以使用 Java 的 Scanner 类来从键盘读取输入,然后将输入存储到数组中。以下是一个简单的示例代码:
```
import java.util.Scanner;
public class ArrayInputFromKeyboard {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter the size of the array: ");
int size = input.nextInt();
int[] arr = new int[size];
System.out.print("Enter the elements of the array: ");
for (int i = 0; i < size; i++) {
arr[i] = input.nextInt();
}
System.out.print("The elements of the array are: ");
for (int i = 0; i < size; i++) {
System.out.print(arr[i] + " ");
}
}
}
```
在上面的代码中,我们首先使用 Scanner 从键盘读取数组的大小,然后创建一个具有该大小的整数数组。接下来,我们使用 for 循环从键盘读取每个元素,并将其存储在数组中。最后,我们使用另一个 for 循环将数组中的元素输出到控制台。
阅读全文