java如何從鍵盤輸入一個(gè)數(shù)組

小億
302
2024-02-26 12:36:26

在Java中,可以使用Scanner類來(lái)從鍵盤輸入一個(gè)數(shù)組。以下是一個(gè)示例代碼:

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 input array is:");
        for (int i = 0; i < size; i++) {
            System.out.print(arr[i] + " ");
        }
        
        scanner.close();
    }
}

在上面的代碼中,首先使用Scanner類從鍵盤輸入數(shù)組的大小,然后創(chuàng)建一個(gè)大小為size的整型數(shù)組。接著通過(guò)循環(huán)從鍵盤輸入數(shù)組的元素,并輸出輸入的數(shù)組。最后關(guān)閉Scanner對(duì)象。

0