工作在井字遊戲。爲什麼我不能打印我的2D陣列?
我一直在努力找出打印2d陣列的正確方法。這是我目前正在處理的方法。試圖打印板內的元素(或值,不管)。這裏有什麼問題?
// display board indicating positions for token (x, o) placement
public void printBoard(int size) {
int col, row;
for (col = 0; col < size; col++)
System.out.print(" " + col);
for (row = 0; row < size; row++) {
System.out.print("\n" + row);
System.out.print(" " + board[col][row] + "|");
System.out.print(" _ _ _ _ _ _");
}
}
您是否錯過了代碼片段中尾部的'}'? –