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

Regarding function in COBOL


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

New User


Joined: 12 Mar 2010
Posts: 64
Location: India

PostPosted: Mon Apr 19, 2010 11:29 am
Reply with quote

Hi Guys,

I have the following requirement:

I have a variable TEMP which can receive positive or negative value. Irrespective of the value it receives I have to make it positive.

Can any one tell me if we have a function in COBOL to do this?
I require a function only to do this..
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Mon Apr 19, 2010 11:33 am
Reply with quote

the COBOL manual will tell if the ABS function is available...
otherwise a good old ...
Code:
if a <= 0 then a = -a
( translated to a valid COBOL format ) will be enough
Back to top
View user's profile Send private message
Mathiv Anan

Active User


Joined: 23 Jul 2008
Posts: 106
Location: USA

PostPosted: Mon Apr 19, 2010 1:24 pm
Reply with quote

We can also achieve this by defining 'TEMP' as unsigned so that sign nibble from sending field will be dropped.
Back to top
View user's profile Send private message
Phrzby Phil

Senior Member


Joined: 31 Oct 2006
Posts: 1042
Location: Richmond, Virginia

PostPosted: Mon Apr 19, 2010 8:17 pm
Reply with quote

I would suggest that if you use the unsigned way, you comment this var and/or the code using it so it is clear that the intent is to calc abs value.
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 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
No new posts Generate random number from range of ... COBOL Programming 3
Search our Forums:

Back to Top