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

9 lines
205 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07: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%