我有这个代码,它打印一个所有值为 0 的 4x4 矩阵。如何将代码添加到文件中的输入值?
matdata1.txt
文件内容如下:
4 4
1 2 3 4
2 4 6 8
2 4 6 8
3 2 3 4
这是我的代码:
File f = new File( args[0]);
Scanner s = new Scanner(f);
int row = s.nextInt();
int col = s.nextInt();
int [] [] mat = new int [row] [col];
for(int i =0; i < row; i++)
{
for( int j =0; j < col; j++)
{
System.out.print (mat[i][j] + " ");
}
System.out.println( );
}