mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 11:51:49 +09:00
6 lines
122 B
QBasic
6 lines
122 B
QBasic
10 FOR I = 2 TO 9
|
|
20 FOR J = 1 TO 9
|
|
30 PRINT I; "*"; J; "="; I * J
|
|
40 NEXT
|
|
50 INPUT "Press Enter Key..."
|
|
60 NEXT |