|
分類:[.NET 全般]
以下のようなプログラムで2次元配列を表示しているのですが,表示された2次元配列の各列の数値を右揃えにして表示したいのですがどのようにすればよいのでしょうか?
public class sample {
/*2次元配列の表示*/
public static void showArray(int[][] array2) {
System.out.println("2次元配列の表示 : ");
for(int i = 0; i < array2.length; i++) {
for(int j = 0; j < array2[i].length; j++) {
System.out.printf("%d ", array2[i][j]);
}
System.out.println();//改行
}
}
public static void main(String[] args) {
/*2次元配列の引数に与える*/
int[][] array2 = {{4, 21, 10, 414},
{20, 283, 7, 8},
{37, 9, 2014, 132}};
showArray(array2);
}
}
|