home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
viscobv6.zip
/
vac22os2
/
ibmcobol
/
samples
/
toolkit
/
rexx
/
api
/
rexxcalc
/
remaind.cal
< prev
next >
Wrap
Text File
|
1996-11-19
|
485b
|
10 lines
/* Rexx Calculator remainder processor */
parse arg left, right /* get the two operands */
numeric digits CalcPrecision() /* set current precision */
numeric form value CalcForm() /* set current form */
if (right = 0) /* bad division? */
then return 'Error' /* return error indicator */
return left // right /* return result */