Arithmetic/Integer: Difference between revisions

m
→‎{{header|REXX}}: changed a comment.
m (added whitespace before the TOC (table of contents), added a section header, added whitespace where they were intended.)
m (→‎{{header|REXX}}: changed a comment.)
Line 2,835:
All operators automatically produce integers (up to 20 decimal digits in the program below),  
<br>or numbers in exponential format when necessary.
<lang rexx>/*REXX program getsobtains two integers from the C.L. or via (a prompt); shows displays some operations.*/
numeric digits 20 /*#s are round at 20th significant dig.*/
parse arg x y . /*maybe the integers are on the C.L. */