Multiplication tables: Difference between revisions

Content added Content deleted
Line 206: Line 206:
msgbox(0,"Multiplication Tables",$table)</lang>
msgbox(0,"Multiplication Tables",$table)</lang>


=={{header|Awk}}==
=={{header|AWK}}==
<lang Awk>
<lang AWK>
BEGIN {
BEGIN {
for(i=1; i<13; i++)
for(i=1; i<13; i++)
Line 229: Line 229:
12 24 36 48 60 72 84 96 108 120 132 144
12 24 36 48 60 72 84 96 108 120 132 144
</lang>
</lang>

=={{header|BBC BASIC}}==
=={{header|BBC BASIC}}==
BBC BASIC automatically right-justifies numeric output.
BBC BASIC automatically right-justifies numeric output.