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

Cobol addition with comma delimited inputs


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

New User


Joined: 05 Apr 2012
Posts: 1
Location: India

PostPosted: Thu Apr 05, 2012 11:43 am
Reply with quote

How to add 5 numbers in cobol with input 1,2,3,4,5 in the same line?

Reading input delimited by comma in same line in cobol so that input is like

For EX:

Input: 1,2,3,4,5 using keyboard

And the output should come as 15
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Thu Apr 05, 2012 12:14 pm
Reply with quote

If you browse the Cobol forum where you have posted you'll see some relevant topics.

Look at things like UNSTRING, STRING, INSPECT and NUMVAL in the Cobol manuals (link at the top of the page).
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Thu Apr 05, 2012 12:47 pm
Reply with quote

OK, I assume you've done all that now.

Can be tricky and is error-prone.

Go back to the spec-writer and see if you can get this done.

"Pre-process" your input file with your SORT product. Use PARSE to put the fields into fixed positions of fixed length. In your program, check that each is numeric, rejecting appropriately if not, then add them all up in the normal way. It'll make things easier all around, especially if the input file is used in more than one place.
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