|
|
| Author |
Message |
ziddiguy
New User
Joined: 20 Jul 2007 Posts: 12 Location: Germany
|
|
|
|
Hi Guys,
Could someone tell me how can I display output in cobol vertically
e.g.
Name Pic X(4) value "TEST"
Output :-
T
E
S
T
How can i display above output |
|
| Back to top |
|
 |
References
|
Posted: Wed Apr 30, 2008 11:32 pm Post subject: Re: DISPLAY output vertically |
 |
|
|
 |
Bill O'Boyle
Active User
Joined: 14 Jan 2008 Posts: 270 Location: Orlando, FL, USA
|
|
|
|
| Code: |
03 WS-SUB PIC 9(04) BINARY.
03 WS-NAME PIC X(04) VALUE 'TEST'.
PERFORM VARYING WS-SUB FROM 1 BY 1
UNTIL WS-SUB > LENGTH OF WS-NAME
DISPLAY WS-NAME (WS-SUB:1)
END-PERFORM.
|
I hope this is only an exercise or homework assignment.
Regards,
Bill |
|
| Back to top |
|
 |
|
|