He is_______ than I.A.elder three yearsB.old three yearsC.three years elderD.three years

题目

He is_______ than I.

A.elder three years

B.old three years

C.three years elder

D.three years older

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

以下对枚举类型名的定义中正确的是______。

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"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enumweekday(sun,mon,tue,wed,thu,fri,sat);说明;1、在C编译中,对枚单元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个牧举变量。

第2题:

以下对枚举类型名的定义中正确的是______。

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"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enumweekday(sun,mon,tue,wed,thu,fri,sat);说明:1、在C编译中,对枚举元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个枚举变量。

第3题:

Believe it or not, Linda’s ( ) son can play the piano now.

A、three-years old

B、three-year-old

C、three-year old


参考答案:B

第4题:

以下对枚举类型名的定义中正确的是

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};


enum a{a1,a2,a3};

第5题:

Despite the wonderful acting and well-developed plot the _________ movie could not hold our attention.

A) three-hours B) three-hour

C) three-hours’ D) three-hour’s

 

 


选B

 用破折号连接的作形容词不用复数.

第6题:

以下对枚举类型名的定义中正确的是______。

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"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enum weekday(sun,mon,tue,wed,thu,fri,sat); 说明:1、在C编译中,对枚举元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个枚举变量。

第7题:

以下对枚举类型名的定义中正确的是 ( )

A.enuma={one,two,three};

B.enuma{one=9,two=-1,three};

C.enum a={"one" "two","three"};

D.enum a{"one","two","three"};


正确答案:B

第8题:

The wealthy doctor has a __________ daughter.

A、three-years-old

B、three years’ old

C、three-year-old

D、three-year old


参考答案:C

第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"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enumweekday(sun,mon,tue,wed,thu,fri,sat);说明:1、在C编译中,对枚举元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个枚举变量。

第10题:

5、以下对枚举类型名的定义中正确的是()。

A.enum a={one,two,three};

B.enum a{one=9,two,three};

C.enum a={"one","two","three"};

D.enum a{"one","two","three"};


enum a {one=9,two=-1,three};