Last active
August 29, 2015 13:56
-
-
Save kunst1080/8934118 to your computer and use it in GitHub Desktop.
= yes PIZZA| head -10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| IDENTIFICATION DIVISION. | |
| PROGRAM-ID. PIZZA. | |
| DATA DIVISION. | |
| * | |
| WORKING-STORAGE SECTION. | |
| 01 III PIC 9(2). | |
| * | |
| PROCEDURE DIVISION. | |
| MAIN-RTN. | |
| MOVE 1 TO III. | |
| PERFORM UNTIL III > 10 | |
| DISPLAY 'PIZZA' | |
| ADD 1 TO III | |
| END-PERFORM. | |
| EXIT PROGRAM. | |
| * |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment