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

assigning value in Comp-3 Variable in procedure division


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
kiran_65

New User


Joined: 01 Apr 2005
Posts: 46

PostPosted: Sun Jan 14, 2007 6:17 pm
Reply with quote

Hi All,

I am declaring a variable as comp-3.
I want to pass value into that.
Suppose the value is 123456. how can I pass the value into that in the procedure division.
please let me know the answer.
Back to top
View user's profile Send private message
hey_its_me
Warnings : 1

New User


Joined: 23 Aug 2006
Posts: 14
Location: USA

PostPosted: Sun Jan 14, 2007 6:32 pm
Reply with quote

Hi Kiran,

If a variable is declared as comp-3, such that the case given below.

01 A pic 9(05) comp-3.

This variable A uses [(5+1)/2] bytes amount of space for storing information.

If you have to store a value of 123,456 into this variable, this declaration is just sufficient.
This is because 3bytes of space means it can have a maximum value of (2^24)= 17*10^6 in it.

After all comp, binary and comp-3 values are used mathematical calculations. Since it speeds up the calculations.


With Regards,
Anil Kumar
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Sun Jan 14, 2007 6:43 pm
Reply with quote

Hi
kiran_65 wrote:
I am declaring a variable as comp-3.
I want to pass value into that.
Suppose the value is 123456. how can I pass the value into that in the procedure division.
Are you refering to the MOVE verb? A simple "MOVE 123456 to variable-name" should work just fine.
Does this answer your question?

Bill
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 Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts Variable Output file name DFSORT/ICETOOL 8
No new posts COBOL - Move S9(11)v9(7) COMP-3 to -(... COBOL Programming 5
No new posts Moving Or setting POINTER to another ... COBOL Programming 2
No new posts parsing variable length/position data... DFSORT/ICETOOL 5
Search our Forums:

Back to Top