色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

java輸入數組的行數和列數

馮子軒1年前7瀏覽0評論

在Java中輸入數組,需要確定數組的行數和列數。下面我們來看看如何實現。

import java.util.Scanner; //引入Scanner類
public class InputArray {
public static void main(String[] args) {
Scanner input = new Scanner(System.in); //實例化Scanner類
System.out.print("請輸入數組的行數:");
int rows = input.nextInt(); //輸入數組的行數
System.out.print("請輸入數組的列數:");
int columns = input.nextInt(); //輸入數組的列數
int[][] array = new int[rows][columns]; //創建一個二維數組
//輸入數組元素
for (int i = 0; i< rows; i++) {
for (int j = 0; j< columns; j++) {
System.out.print("請輸入第" + (i + 1) + "行第" + (j + 1) + "列的元素:");
array[i][j] = input.nextInt();
}
}
//輸出數組元素
for (int i = 0; i< rows; i++) {
for (int j = 0; j< columns; j++) {
System.out.print(array[i][j] + " ");
}
System.out.println(); //換行
}
}
}

在上面的例子中,我們使用了Scanner類來輸入數組的行數和列數。然后,創建一個指定行數和列數的二維數組,并使用循環輸入元素。最后,使用循環輸出數組元素。