Two ___ three is five. A.plusB.minusC.mutiplyD.devide

题目
Two ___ three is five.

A.plus

B.minus

C.mutiply

D.devide

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

第1题:

There are ( )in the picture.

A、two deers and three birds

B、four elephants and five sheeps

C、five fishes and six foxes

D、three sheep and four deer


参考答案:D

第2题:

以下程序段的输出结果为 ( )int j=2;switch(j){case 2:System.out.print("two.");case 2+1:System.out.println("three.");breakdefault:System.out.println("value is"+j);break;}

A.two.three.

B.two.

C.three.

D.value is 2


正确答案:A
解析:该题测试的是考生对switch语句的掌握,执行时,swish语句根据表达式返回的值与每个case子句的值相比较。如果匹配成功,则执行该case子句后的语句序列,直到执行到break语句或switch语句结束,然后跳出switch语句。如果匹配不成功,则跳转到default语句。本题中的switch(2)应对应case2,所以输出"two.",但是它后面没有break,所以继续执行case2+1,输出"three.",这时遇到break,则跳出switch语句。所以本题选择A。

第3题:

有如下程序:

#include

using namespace std;

class ONE

{

public:

virtual void f(){cout<<"l";}

};

class TWO:public ONE

{

public:

TWO(){cout<<"2";}

};

class THREE:public TWO

{

public:

virtual void f(){TWO::f(); cout<<"3";}

};

int main()

{

ONE aa, *p;

TWO bb;

THREE cc;

p = &cc;

p->f();

return 0;

}

执行上面程序的输出是 【 11 】 。


正确答案:

第4题:

如何把阿拉伯小写数字(包括小数)1234123.23 转化成英文:one million, two hundred and

thirty-four thousand, one hundred and twenty-three point two three


正确答案:
 

第5题:

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

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、一个整数不能直接赋给一个枚举变量。

第6题:

There are ( )and ( )in the room.

A、three radios/ two pianoes

B、hundreds of photos/ thousands of tomatos

C、two radios/ many photos

D、two photos/ three radioes


参考答案:C

第7题:

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

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、一个整数不能直接赋给一个牧举变量。

第8题:

The balance sheet is divided into ______ sections: ______.

A.two.., assets and liabilities

B.two.., incomes and expenditures

C.three.., assets, liabilities and owner's equity

D.three.., incomes, expenditures, and equity


正确答案:C
解析:the balance sheet资产负债表。expenditures支出,花费。

第9题:

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

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


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

第10题:

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

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


正确答案:B

更多相关问题