定义如下枚举类型:enum Number{one=1,two=2,four=4,eight=8),则下列语句正确的是( )。
A.Number num=1;
B.Numbernum=Number(20);
C.Number num=Number(eight│OxFF);
D.枚举类型Number的取值范围是0~15
第1题:
以下对枚举类型名的定义中正确的是( )
A.enum a={one,two,three};
B.enum a{one=9,two=-1,three=200};
C.enum a={"one","two","four"};
D.enum a{"nine","two","three"};
第2题:
以下对枚举类型名的定义中正确的是( )。
A.enum a={one,two,three};
B.enum a{one=9,two=-1.three=200};
C.enum a={"one","two","four"};
D.enum a{"nine","two","three"};
第3题:
以下对枚举类型名的定义中正确的语句是
A.enum a={one,two,three};
B.enum a {a1,a2,a3} ;
C.enum a={'1','2','3'} ;
D.enum a {"one","two","three"} ;
第4题:
定义如下枚举类型:enum Number{one=l,two=2,fomr=4,eight=8},则枚举类型Number的取值范( )。
A.1~8
B.0~8
C.1~15
D.0~15
第5题:
8、以下对枚举类型名的定义中正确的是
A.enum a {one=9,two=-1,three};
B.enum a={“one”, “two”, “three”};
C.enum a {“one”, “two”, “three”};
D.enum a={one, two, three};