|
|
7030 DEF PROC_PrintUpdatedGrid 7040 PRINT"Now we shall look at the updated grid, after PROC_Eliminations." 7050 X=0 7060 REPEAT 7070 X=X+1 7080 Y=0 7090 REPEAT 7100 Y=Y+1 7110 Z=0 7120 REPEAT 7130 Z=Z+1 7140 7150 PRINT"N(";X;",";Y;",";Z;") = ";N(X,Y,Z) 7160 7170 UNTIL Z=9 7180 UNTIL Y=9 7190 UNTIL X=9
|
|
|