问题
-
已知枚举类型定义语句为: enum Token{NAMB,NUMBER,PLUS=5,MINUS,PRINT=10}; 则下列叙述中
-
以下对枚举类型名的定义中正确的是()。A.enum a={one two three};B.enum a{one=9 two=-1.three=20
-
有枚举类型的定义: enum color1 { yellow green blue=5 red brown}; 则枚举常量yellow 和 red的值分别是()
-
设有如下枚举类型定义:enum language {Basic=3 Assembly Ada=100 COBOL Fortran};枚举类型Fortra
-
以下对枚举类型名的定义中正确的是______。A.enum a={one two three};B.enum a{on=9 two=-1 three
-
以下对枚举类型名的定义中正确的是()A.enum a={one two three};B.enum a{one=9 two=-1 three=200