91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java如何從鍵盤輸入一個數組

小億
304
2024-02-26 12:36:26
欄目: 編程語言

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

在上面的代碼中,首先使用Scanner類從鍵盤輸入數組的大小,然后創建一個大小為size的整型數組。接著通過循環從鍵盤輸入數組的元素,并輸出輸入的數組。最后關閉Scanner對象。

0
芜湖市| 疏勒县| 金塔县| 正蓝旗| 沈阳市| 岢岚县| 郁南县| 淅川县| 通辽市| 祁连县| 婺源县| 二连浩特市| 商水县| 高雄市| 阿鲁科尔沁旗| 彝良县| 津市市| 任丘市| 涟水县| 水城县| 徐水县| 通州市| 衡南县| 鄂州市| 临海市| 凤城市| 曲松县| 甘洛县| 吉安市| 如皋市| 白水县| 中方县| 平泉县| 光山县| 界首市| 开远市| 义马市| 麻栗坡县| 兴和县| 兴宁市| 申扎县|