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?
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