Implemented Possible printBoard

Doing this through web browser, so unsure if this will work or compile.. Will check later
This commit is contained in:
Thomas Kwashnak
2022-01-06 08:52:12 -05:00
committed by GitHub
parent f8cc93aaea
commit 918b42149e

View File

@@ -71,7 +71,12 @@ public class HighIQ {
}
public void printBoard() {
for(int i = 0; i < 7; i++) {
for(int j = 11; j < 18; j++) {
out.print(getChar(j + 9 * i));
}
out.println();
}
}
private char getChar(int position) {