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

to check divide by zero codition?


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

New User


Joined: 02 Aug 2005
Posts: 3
Location: chennai

PostPosted: Wed Aug 10, 2005 7:57 pm
Reply with quote

is there any statement in cobol to check divide by zero condition as in PLI?


eg compute ans = m/n
where m is 20 and n is 0
what error it will give?


pls reply me?
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Thu Aug 11, 2005 3:51 am
Reply with quote

Hi Madhan,

Why not:

if n not = 0
compute ans = m/n
else
display 'cant divide by zero'
end-if
Back to top
View user's profile Send private message
rssomm

New User


Joined: 05 Jun 2005
Posts: 41
Location: Hyderabad

PostPosted: Thu Aug 11, 2005 9:22 am
Reply with quote

Hi madhan1582,


Use ON SIZE ERROR condition.

For example
Divide A by B giving C On Size error display 'Division by zero'.

If B is Zero the message will be displayed.

Regards
Madhu
Back to top
View user's profile Send private message
bmadhu346

New User


Joined: 05 Jul 2005
Posts: 7
Location: hyderabad

PostPosted: Fri Aug 19, 2005 7:00 pm
Reply with quote

hi friend
ifu divide numeric by zero u will get a soc c abend so while coding follow on size error imperative satement in the coding


regards
madhu
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Sat Aug 20, 2005 11:30 pm
Reply with quote

Hi Madhu,

The only problem w/your solution is that a "legitimate" size error (i.e. a result that exceeds the size of the receiving data) area will produce the same msg. That can cause confusion and delays in the prob res process.
Back to top
View user's profile Send private message
sendil

New User


Joined: 30 Jun 2005
Posts: 27

PostPosted: Thu Aug 25, 2005 12:01 pm
Reply with quote

if (n > zero)
divide m/n
else
display ' can't divide by zero'
end-if
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 SCOPE PENDING option -check data DB2 2
No new posts Check data with Exception Table DB2 0
No new posts How to check whether who renamed the ... JCL & VSAM 3
No new posts No ++JCLIN, APPLY CHECK job JCL & VSAM 1
No new posts EMPTY file check scenario JCL & VSAM 6
Search our Forums:

Back to Top