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

Handling exponential formats in COBOL


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

New User


Joined: 04 Oct 2005
Posts: 19
Location: Singapore

PostPosted: Thu Feb 10, 2011 2:58 pm
Reply with quote

Hii

Please let me know how to handle exponential data format in Cobol.

I have a file of fixed length format and one of the field is amount field which is having values like 5.6843418860808015e-14 .
But it also has values like 328.88899999999995. I need to define the copybook structure for this file. How should I declare a variable to handle this type of values?


Thanks a lot in advance.
Back to top
View user's profile Send private message
Dsingh29

Active User


Joined: 16 Dec 2008
Posts: 132
Location: IBM

PostPosted: Thu Feb 10, 2011 3:20 pm
Reply with quote

you can use 'E' in your pic clause....

E
indicates that the following digits are the exponential for a floating point number. For example PIC '9v99999e99'.


For more information:

http://www.felgall.com/cob1.htm.


BTW..it took me just 2 mins to google. icon_smile.gif
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Thu Feb 10, 2011 3:49 pm
Reply with quote

I suspect you'll have to define the field as PIC X and use program logic to determine how to handle the contents. If you use an E in the PICTURE clause, I would think records without an E in the field would cause a problem. I have not had a chance to test this, though -- when I get a chance to, Ill post the results.
Back to top
View user's profile Send private message
Kjeld

Active User


Joined: 15 Dec 2009
Posts: 365
Location: Denmark

PostPosted: Fri Feb 11, 2011 3:33 pm
Reply with quote

Is the precision really used for anything? These formats most of all look like values punched from some SAS program where the programmer didn't care or weren't instructed to specify a fixed precision format.

If you have a chance to challenge the input formatting, I would start there.
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