Multiplication tables: Difference between revisions

m
→‎{{header|360 Assembly}}: Superfluous blanks suppressed
m (→‎{{header|360 Assembly}}: Superfluous blanks suppressed)
Line 5:
 
=={{header|360 Assembly}}==
<lang 360asm>* 12*12 multiplication table 14/08/2015
* 12*12 multiplication table 14/08/2015
MULTTABL CSECT
USING MULTTABL,R12
Line 66 ⟶ 65:
PORT DC C'--+-------------------------------------------------'
YREGS
END MULTTABL</lang>
</lang>
{{out}}
<pre> | 1 2 3 4 5 6 7 8 9 10 11 12
<pre>
| 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 83 ⟶ 80:
10| 100 110 120
11| 121 132
12| 144</pre>
</pre>
 
 
 
=={{header|ActionScript}}==
1,392

edits