RosettaCodeData/Task/Detect-division-by-zero/COBOL/detect-division-by-zero.cobol

5 lines
106 B
Text
Raw Permalink Normal View History

2014-04-02 16:56:35 +00:00
DIVIDE foo BY bar GIVING foobar
ON SIZE ERROR
DISPLAY "Division by zero detected!"
END-DIVIDE