From 918b42149e0f4abe2512eaf69343fb1cbe7baef5 Mon Sep 17 00:00:00 2001 From: Thomas Kwashnak Date: Thu, 6 Jan 2022 08:52:12 -0500 Subject: [PATCH] Implemented Possible printBoard Doing this through web browser, so unsure if this will work or compile.. Will check later --- 48_High_IQ/java/src/HighIQ.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/48_High_IQ/java/src/HighIQ.java b/48_High_IQ/java/src/HighIQ.java index 75426197..93340556 100644 --- a/48_High_IQ/java/src/HighIQ.java +++ b/48_High_IQ/java/src/HighIQ.java @@ -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) {