-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexm10.cbl
38 lines (30 loc) · 1.45 KB
/
exm10.cbl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
*****************************************************************
* *
* This software have been developed under GNU GPL v3 License. *
* That means, no closed distribution of this software is *
* allowed. *
* *
* Please refer to the License text here: *
* https://www.gnu.org/licenses/gpl-3.0.txt *
* *
* For any comment, suggestion or similar, you can reach me via *
* mail on "doscar.sole@gmail.com" *
* *
*****************************************************************
ID DIVISION.
PROGRAM-ID. EXM10.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 VARIABLES.
02 OPERACION-1.
03 OP-A.
04 BASE PIC 9(01).
PROCEDURE DIVISION.
MAINLINE.
DISPLAY 'INICIO DEL PROGRAMA'.
MOVE 1 TO BASE.
DISPLAY 'BASE: ' BASE.
SET BASE UP BY 2.
DISPLAY 'BASE: ' BASE.
SET BASE DOWN BY 1.
DISPLAY 'BASE: ' BASE.