RosettaCodeData/Task/Multiplication-tables/BBC-BASIC/multiplication-tables.basic

9 lines
205 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
@% = 5 : REM Set column width
FOR row% = 1 TO 12
PRINT row% TAB(row% * @%) ;
FOR col% = row% TO 12
PRINT row% * col% ;
NEXT col%
PRINT
NEXT row%