mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-08 04:01:51 +09:00
6 lines
125 B
QBasic
6 lines
125 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..."; A
|
|
60 NEXT |