IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

What is the Syntax of the Two Dimensional Arry in COBOL


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sakthivel janarthanan
Currently Banned

New User


Joined: 01 Mar 2007
Posts: 6
Location: Chennai

PostPosted: Thu Mar 01, 2007 1:09 am
Reply with quote

Hi All,

What is the Syntax of the Two Dimensional Arry in COBOL ? if Possible Please show me Simple Program.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Mar 01, 2007 1:47 am
Reply with quote

Hello,

Code:

77  the-hour      pic 9(3) comp-3 value 1.
77  the-minute   pic 9(3) comp-3 value 1.

01  two-dimension-table.
     05 hours-dim occurs 24 times.
         10 mins-dim   occurs 60 times.
             15  a-counter  pic 9(7) comp-3.
             


Let's say you had "something" that could happen multiple times a minute and you want to count how many times it happened for each hour/minute for some period of time (the input is NOT in hour/minute sequence). You could use the hour and minute to point to the "counter" for that time and add to it as appropriate.

The arrays need to be initialized to zeros before processing starts.

In the program, the "hour and minute" are moved/calculated from the input to the 2 corresponding 77-level fields.

Your code would then be:
Code:
add 1 to a-counter(the-hour, the-minute).


When the input has all been processed, a loop could be used to process all of the a-counter entries for all of the hours/minutes.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
Search our Forums:

Back to Top