入力した入力の配列を表示したい。自動的に印刷されます。入力した入力値の配列を表示したい。自動的に印刷されます。
このような私のコード:
public class ReadArray {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Input total row : ");
int row = sc.nextInt();
System.out.print("Input total column : ");
int column = sc.nextInt();
int [][] matrix = new int[row][column];
for (int i = 0; i < row; i++)
{
for(int j = 0; j < column; j++) {
System.out.println("Row ["+i+"]: Column "+j+" :");
matrix[i][j] = sc.nextInt();
}
}
}
}
私はこのような結果が欲しい:
入力集計行:2 入力集計列:2
行 [0]: 列 0 : 1
行 [0]: 列 1 : 2
行 [1]: 列 0 : 10
行 [1]: 列 1 : 11
データ配列 1 : 1,2 データ配列 2 : 10,11
誰でも私を助けてください。