Commit b0eb747d authored by daniel.tang's avatar daniel.tang

Update assessment_finalised

parent 3074efdd
......@@ -351,7 +351,7 @@ class assessment_part_1 {
public static void display2(String board2[][]) { // Displays board
for(int g=0; g<8; g++) { // Columns
for(int g=4; g<8; g++) { // Columns
for(int f=0; f<12; f++) { // Rows
System.out.print( board2[g][f] + ""); // print out board 2
}
......@@ -451,7 +451,7 @@ class assessment_part_1 {
public static void display3(String board3[][]) { // Displays board
for(int q=0; q<14; q++) { // Columns14
for(int q=7; q<14; q++) { // Columns14 q=7 means it starts a column 7 WOWEE
for(int w=0; w<12; w++) { // Rows
System.out.print( board3[q][w] + "");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment