RosettaCodeData/Task/Increment-a-numerical-string/COBOL/increment-a-numerical-string-2.cobol

14 lines
291 B
Text
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
PROGRAM-ID. increment-num-str.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 num-str PIC 9(5) VALUE 12345.
PROCEDURE DIVISION.
DISPLAY num-str
ADD 1 TO num-str
DISPLAY num-str
GOBACK
.