我有一個10x10的陣列設置,可以使用句點「」打印出網格。在數組元素[0]的左上角有一個「P」並且數組元素[99]的右下角有一個「T」的時候,我需要幫助確定如何打印網格。 應該是這個樣子:打印一個10x10的網格,開頭爲「P」,結尾爲「T」
P.........
..........
..........
..........
..........
..........
..........
..........
..........
.........T
這是到目前爲止我的代碼:
public class Adventure {
public static void main(String[] args) {
char grid[][]= new char[10][10];
for(int i=0; i<10; i++) {
for(int j=0; j<10; j++)
System.out.print(".");
System.out.println("");
}
}
}
如何我將設置內容,所有點兩個嵌套循環? – 2012-02-06 18:05:35
@KevinSanchez像這樣:'grid [i] [j] ='。';' – dasblinkenlight 2012-02-06 18:11:14