Multiplication table by pooq

input""n
for i=0to n
for j=0to n
a=i*j
if!a a=i+j
b$=str$(a)
if!n=j b$=left$(b$+"   ",4)
?b$;next
?next

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page