Arithmetic/Integer: Difference between revisions

m
→‎{{header|REXX}}: changed a comment.
m (→‎{{header|REXX}}: added/changed comments and whitespace, changed indentations.)
m (→‎{{header|REXX}}: changed a comment.)
Line 2,829:
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 gets two integers from the C,.L. or via a prompt; shows some operations.*/
numeric digits 20 /*#s are round at 20th significant dig.*/
parse arg x y . /*maybe the integers are on the C.L. */