中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
福泉市| 合川市| 当阳市| 油尖旺区| 石嘴山市| 彭阳县| 南华县| 黄石市| 崇左市| 襄垣县| 治县。| SHOW| 偃师市| 策勒县| 阿城市| 宾川县| 育儿| 凤阳县| 乳山市| 岳阳县| 綦江县| 郁南县| 罗定市| 万年县| 上高县| 大丰市| 河北区| 扎囊县| 廉江市| 巴彦淖尔市| 海城市| 类乌齐县| 漯河市| 灵丘县| 日土县| 平阴县| 山阳县| 武义县| 吉隆县| 营口市| 绩溪县|