Multiplication tables: Difference between revisions

m
→‎{{header|REXX}}: corrected a misspelling. -- ~~~~
(→‎BASIC: added qbasic and "see also")
m (→‎{{header|REXX}}: corrected a misspelling. -- ~~~~)
Line 1,930:
 
=={{header|REXX}}==
<lang REXX>/*REXX program to display a 12x12 multiplication boxed grid table.*/
<lang REXX>
/*REXX program to display a 12x12 multiplication boxed grid table.*/
 
/*grid will be displayed in "boxing" characters for ASCII or EBCDIC */
Line 1,970 ⟶ 1,969:
cell=cj||copies(dash,5) /*define the top of the cell.*/
sep=copies(cell,high+1)rj /*build the table seperator. */
sepL=length(sep) /*length of seperatorseparator line. */
width=length(cell)-1 /*width of the table cells. */
size=width-1 /*width for table numbers. */
Line 2,025 ⟶ 2,024:
 
say w||bar /*finish building last cell. */
return</lang>
'''output'''
</lang>
Output:
<pre style="height:30ex;overflow:scroll">