Detect division by zero: Difference between revisions

m
→‎{{header|RPL}}: highlighted synthax
m (fixed broken link)
m (→‎{{header|RPL}}: highlighted synthax)
Line 2,097:
=={{header|RPL}}==
RPL provides targeted error detection and handling. In case of a division by zero, rather than displaying an error message, the program delivers the attempted arithmetic operation as an expression to be further processed.
'''IFERR''' / '''THEN'''
SWAP "'" SWAP →STR + "/" + SWAP →STR + STR→
'''END'''
'<span style="color:blue">DIV</span>' STO
6 2 <span style="color:blue">DIV</span>
6 2 DIV
4 0 <span style="color:blue">DIV</span>
4 0 DIV
{{out}}
<pre>
1,150

edits