RosettaCodeData/Task/Detect-division-by-zero/COBOL/detect-division-by-zero.cobol
2023-07-01 13:44:08 -04:00

4 lines
106 B
COBOL

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