Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a homework assignment that need turned in tomorrow and I can't seem to get this one part right. See I was given a input file with a bunch of names, some of which I need to skip, with extra info on each one. I was trying use ANDs and ORs to skip over the names I did not need and I came up with this.

IF DL-CLASS-STANDING = 'First Yr' OR 'Second Yr' AND
GRAD-STAT-IN = ' ' OR 'X'

It got rid of all but one person, but when I tried to add another set of ANDs and ORs the program started acting like the stipulations where not even there.

Did I make it too complex for the compiler? Is there an easier way to skip over things?

share|improve this question
40  
ALSO WHO THE @*&(^! LEARNS COBOL ANY MORE? sheesh – Joel Spolsky Dec 3 '10 at 3:42
32  
@Joel Spolsky: More importantly, this appears to be homework. What @*&$% school is teaching COBOL in 2010?!? – Asaph Dec 3 '10 at 3:44
7  
You will still see a lot of universities covering COBOL in Info Systems related curriculum where businesses that commonly hire their graduates have COBOL needs. Almost never in a Computer Science curriculum though. There are a few insurance/finance companies that require entry devs to learn cobol. Some ERP systems contain COBOL modules as well (PeopleSoft, etc) – sparks Dec 3 '10 at 4:47
7  
@Joel As a matter of fact, COBOL was the language in my college course that separated the programmers from the jokers. 60% failed and dropped out. The whole point of learning COBOL in school is that all your assignments are nothing bug huge loops. And they don't teach you GO TO -- there's something to be said for huge COBOL loops that are structured. It was an excellent learning experience for me, and Murach's book was perfect. Also FWIW, COBOL is actively being developed and maintained and my current job (banking), and was also the core part of the system at my last job (insurance). – Josh Stodola Dec 3 '10 at 5:16
11  
As a programmer who helps maintain the millions of lines of code that have kept the company he works for succesful and profitable for 30+ years(not there for that long), I say more people should learn COBOL. It is not the language that defines a good or successful program; it is the programmer. Is it verbose and frustrating sometimes? Yes, it is, but it works and works well. My name is Bill, and I program in COBOL. :-) – Buggabill Dec 4 '10 at 15:22
show 11 more comments

2 Answers

up vote 114 down vote accepted

Try adding some parentheses to group things logically:

IF (DL-CLASS-STANDING = 'First Yr' OR 'Second Yr') AND (GRAD-STAT-IN = ' ' OR 'X')

share|improve this answer
54  
+1 for not knowing COBOL at all. – SDReyes Dec 3 '10 at 4:28
6  
I second the motion, +1 for not knowing COBOL at all – Darko Z Dec 3 '10 at 4:30
6  
Using abbreviated relational conditions within a complex relational condition is allowed, that doesn't make it a good idea. A much more maintainable way to write this would be "If (DL-CLASS-STANDING = 'First Yr' OR DL-CLASS-STANDING = 'Second Yr') AND (GRAD-STAT-IN = ' ' OR GRAD-STAT-IN = 'X'). The confusion the OP was suffering would have been avoided had they not used this "cute" language feature. – Joe Zitzelberger Dec 3 '10 at 16:25
10  
46 upvotes on a trivial COBOL answer? I wonder what's the average number of votes for COBOL answers... – edoloughlin Dec 4 '10 at 11:07
16  
@edoloughlin: The answer was likely voted up mostly by Joel Spolsky fanboys rather than COBOL fanboys. Joel actually mentioned in one of the podcasts that it's easier for Jeff and Joel to earn reputation than other mere mortal StackOverflow users. I think it was shortly after Jeff complained about Joel's now famous "How do I move the turtle in logo?" question -- stackoverflow.com/questions/1003841/… – Asaph Dec 5 '10 at 17:40
show 7 more comments

Wow, it's been so long I can't even remember if that syntax is valid or not :-) You may want to look into fully expanding that abbreviated expression since the expansion may not be what you think when there's a lot of clauses. Far better to be explicit.

However, what I would do is use the 88 level variables to make this more readable - 88s were special levels to allow conditions to be specified in the data division directly rather than using explicit conditions in the code.

In other words, put something like this in your data division (this is from memory since my only COBOL compiler is on the mainframe at work and I'm off today).

03  DL-CLASS-STANDING  PIC X(20).
    88 IS-FIRST-YEAR              VALUE 'First Yr'.
    88 IS-SECOND-YEAR             VALUE 'Second Yr'.
03  GRAD-STAT-IN       PIC X.
    88 GRAD-STAT-UNKNOWN          VALUE ' '.
    88 GRAD-STAT-NO               VALUE 'X'.

Then you can use the 88 level variables in your expressions:

IF (IS-FIRST-YEAR OR IS-SECOND-YEAR) AND (GRAD-STAT-UNKNOWN OR GRAD-STAT-NO) ...

This is, in my opinion, more readable and the whole point of COBOL was to look like readable English, after all.

share|improve this answer
I'm not a COBOL programmer but this 88 syntax doesn't look anything like readable English to me. – Asaph Dec 3 '10 at 3:41
2  
@Asaph, added the (readable) code bit for all non-COBOL people out there, all 99.99999999999% of you :-) – paxdiablo Dec 3 '10 at 3:42
@paxdiablo: Thanks. That helps. But I think I'll stick with Java. :) – Asaph Dec 3 '10 at 3:48
1  
A level 88 is the COBOLish way to do an enumeration. – Paul Morgan Dec 3 '10 at 4:18
1  
A much nicer solution than literal checks. – Joe Zitzelberger Dec 3 '10 at 16:26
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.