我想显示我输入的输入数组。并自动打印。我想显示我输入的输入值数组。并将自动打印。
我的代码是这样的:
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
任何人都可以帮助我。