在二維數組中,我們可以生成n * n矩陣。以及如何將數字替換爲0的替換矩陣中。如何在二維數組中生成0的樓梯案例?
public static void main(String[] args) {
int rows = 8;
int coulmns = 4;
int array;
for (int i = 1; i < rows; i++) {
for (int j = 1; j < coulmns; j++) {
System.out.print(i*j+" ");
}
System.out.println("");
}
}
}
輸出:
1 2 3
2 4 6
3 6 9
4 8 12
5 10 15
6 12 18
7 14 21
我怎麼能輸出的形式取代0在樓梯的情況下:
1 2 (0)
2 (0) 6
(0) 6 9
4 (0) 12
5 10 (0)
6 (0) 18
(0) 14 21
答案將取決於語言,你沒有指定。 –