我很想知道如何在COBOL中做一些事情。 我正试图撰写一个方案,在数据档案中记录数据与产出相匹配时使用。 但是,我还没有这样做,但我认为需要做的是制定不同数据类型的编码。
blue = 1
brown = 2
.
因此,我试图这样做,但愿不工作。 我已在主谈中宣布:
01 COLOR-IN PIC (9)
05 BLUE VALUE 1.
05 BROWN VALUE 2.
然后,我只想写一下像发言一样的话。
IF COLOR-IN = BLUE
PERFORM 200-OUTPUT.
因此,我询问的是,我如何使肤色等同于数字或字母代码。 我应该作什么发言。
我是这样说的。 我使用了88份声明。 和
88 MALE VALUE M .
But I have another problem. The output does list the records that meet the if statement criteria, however, I need to code in the program the actual hair and eye color so that when the program executes it prints the hair and eye color instead of 1 or 2. Can anyone give me an example or hint on how to do that?