以下对枚举类型名的定义中正确的是()。
第1题:
A.Enum a={one,two,three};
B.Enum a {a1,a2,a3};
C.Enum a={''1'',''2'',''3''};
D.Enum a {"one","two","three"};
第2题:
下面的类中定义了一个枚举类型,请完成下面的程序。
class Base {
public:
enum Week {Sum, Mon,Tue, Wed, Thu, Fri, Sat};
Week a;
}
void fun(Base &B) {
【 】 = 【 】; //将对象的a赋值为所定义的枚举类型值为的枚举量
}
第3题:
已知枚举类型定义语句为: enum Token{NUMBER, PLUS=5, MINUS, PRINT=10}; 则下列叙述中错误的是( )。
A.枚举常量NAME的值为1
B.枚举常量NUMBER的值为1
C.枚举常量MINUS的值为6
D.枚举常量PRINT的值为10
第4题:
以理对枚举类型名的定义中正确的是______。
A.enum a={one, two, three);
B.enum a {one=9, two=1three};
C.enum a={"one", "two", "three"};
D.enum a {"one", "two". "three"};
第5题:
第6题:
以下对枚举类型名的定义中正确的是______。
A.enum a={one,two,three};
B.enum a{on=9,two=-1,three};
C.enum a={"one","two","three"};
D.enum a{"one","two","three"};
第7题:
A.DirectionDirection=EAST;
B.Directiondirection=Direction.WEST;
C.inta-Direction.NORTH;
D.Directiondirection=2;
第8题:
定义枚举类型的关键词是include。()
第9题:
以下对枚举类型名的定义中正确的是______。
A.enum a={one,two,three};
B.enum a{one=9,two=-1,three};
C.enum a={"one","two","three"};
D.enum a{"one","two","three"};
第10题:
定义如下枚举类型: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