Integer roots: Difference between revisions

m
→‎{{header|REXX}}: changed wording in the REXX section header.
m (→‎{{header|REXX}}: changed wording in the REXX section header.)
Line 23:
=={{header|REXX}}==
No error checking is performed to ensure the root is a non-zero integer.
<br>Negative roots are allowedsupported.
<lang rexx>/*REXX program calculates the Nth root of a number to a specified number of decimal digs*/
parse arg num root digs . /*obtain the optional arguments from CL*/
Line 75:
54057586799967012137223947582142630658513221740883238294728761739364746783743196000159218880734785761725221186749042497736692920731109636972160893370866115673458533483329525467585164471075784860246360
08
</pre>
 
=={{header|zkl}}==