Multiplication tables: Difference between revisions

(→‎{{header|Scilab}}: Section added)
Line 2,596:
=={{header|Scilab}}==
{{works with|Scilab|5.5.1}}
<lang> nmax=12, xx=3
nmax=12, xx=3
s= blanks(xx)+" |"
for j=1:nmax
Line 2,618 ⟶ 2,617:
end
printf("%s\n",s)
end</lang>
</lang>
{{out}}
<pre> | 1 2 3 4 5 6 7 8 9 10 11 12
<pre style="height:20ex">
| 1 2 3 4 5 6 7 8 9 10 11 12
--- + --- --- --- --- --- --- --- --- --- --- --- ---
1 | 1 2 3 4 5 6 7 8 9 10 11 12
Line 2,635 ⟶ 2,632:
10 | 100 110 120
11 | 121 132
12 | 144</pre>
</pre>
 
 
 
=={{header|Seed7}}==
1,392

edits