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

Comparing characters using COBOL


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

New User


Joined: 09 Apr 2007
Posts: 33
Location: India

PostPosted: Sat Jun 07, 2008 7:46 am
Reply with quote

Will the below logic work fine

CODE 1:
01 WS-VAR1 PIC X VALUE '#'.
01 WS-VAR2 PIC X VALUE 'V'.

IF (WS-VAR1 > WS-VAR2)
DISPLAY 'I AM IN IF'
ELSE
DISPLAY 'I AM IN ELSE'
END-IF.

CODE 2:
IF( '#' > 'V' )
DISPLAY 'I AM IN IF'
ELSE
DISPLAY 'I AM IN ELSE'
END-IF.

Thanks in advance. icon_smile.gif
Back to top
View user's profile Send private message
yogeshwar_ade

Active User


Joined: 31 Aug 2006
Posts: 103
Location: INDIA

PostPosted: Sat Jun 07, 2008 7:50 am
Reply with quote

Why Don't You Try and let us know the result?
Back to top
View user's profile Send private message
umanaga

New User


Joined: 09 Apr 2007
Posts: 33
Location: India

PostPosted: Sat Jun 07, 2008 7:54 am
Reply with quote

I tried CODE 2, but got compilation error. I havn't checked CODE 1.
Now i don't have access to mainframe.
So would like to hear from experts.
Back to top
View user's profile Send private message
yogeshwar_ade

Active User


Joined: 31 Aug 2006
Posts: 103
Location: INDIA

PostPosted: Sat Jun 07, 2008 8:56 am
Reply with quote

Your Code-1 will work & will give result as

Code:

I AM IN ELSE



It makes compare on equivalent EBCDIC collating sequence of '#' & 'V'.

Correct me If I am wrong.

Yogeshwar
Back to top
View user's profile Send private message
itdsen

New User


Joined: 20 Sep 2006
Posts: 23
Location: Chennai

PostPosted: Wed Jun 11, 2008 6:51 pm
Reply with quote

Code 1 will work fine.

result : I Am In Else.
Back to top
View user's profile Send private message
Phrzby Phil

Senior Member


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

PostPosted: Thu Jun 12, 2008 5:56 pm
Reply with quote

Are you going to tell us the compiler error?

Since the compiler can see what is being compared, it knows the result, and can therefore generate just the code needed. The remaining codce is dead and the compiler will issue a level 4 warning for it.
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 Substring number between 2 characters... DFSORT/ICETOOL 2
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
Search our Forums:

Back to Top