RosettaCodeData/Task/Detect-division-by-zero/COBOL/detect-division-by-zero.cobol
2014-04-02 16:56:35 +00:00

4 lines
106 B
COBOL

DIVIDE foo BY bar GIVING foobar
ON SIZE ERROR
DISPLAY "Division by zero detected!"
END-DIVIDE