Multiplication tables: Difference between revisions

Content added Content deleted
(→‎{{header|BASIC}}: Consolidate BASIC implementations under one section)
(→‎{{header|BASIC256}}: moved under BASIC)
Line 1,983: Line 1,983:
else
else
nums$ = nums$ + " "
nums$ = nums$ + " "
end if
next j
print nums$
next i</lang>

=={{header|BASIC256}}==
<lang freebasic>print " X| 1 2 3 4 5 6 7 8 9 10 11 12"
print "---+------------------------------------------------"

for i = 1 to 12
nums$ = right(" " + string(i), 3) + "|"
for j = 1 to 12
if i <= j then
if j >= 1 then
nums$ += left(" ", (4 - length(string(i * j))))
end if
nums$ += string(i * j)
else
nums$ += " "
end if
end if
next j
next j