【单选题】【消耗次数:1】
It ______ to keep calm when confronted with dangers.
pays
takes
costs
deserves
参考答案:
复制
纠错
相关题目
【单选题】 How can you keep the machine ()when you are away?
①  run
②  to run
③  running
④  being run
【单选题】 A kind teacher always takes a very _______ attitude when correcting students’ mistakes.
①  negative
②  partial
③  potential
④  positive
【单选题】 9. The goal is to keep this land alive, to ______ animal population and keep it growing.
①  insist
②  keep
③  preserve
④  kill
【单选题】 It was essential that her thinking ______ calm and reasoned.
①  remained
②  remain
③  had remained
④  would remain
【单选题】 In the meantime, the question facing business is whether such research is _____ the costs.
①  worth
②  worth of
③  worthy
④  worthwhile
【单选题】 I like this jacket better than that one, but it costs twice ______.
①  as much
②  so much
③  that much
④  too much
【单选题】 -________ keep water running when you are brushing your teeth or washing your hands, Jack.  -OK. I know we must save every drop(滴) of water.
①  Please
②  Why not
③  Don’t
④  do
【单选题】 Does jogging cost much? No, it costs almost_________ but a good pair of shoes.
①  everything
②  anything
③  something
④  nothing
【单选题】 They ____ that the aging population is adding 1 per cent yearly to health service costs.
①  add
②  calculate
③  add to
④  calculate on
【单选题】 In Africa, educational costs are very low for those who are ____ enough to get into universities.
①  ambitious
②  fortunate
③  aggressive
④  substantial
随机题目
【单选题】 有以下程序,执行后输出结果是() main( ) { int m[][3]={1,4,7,2,5,8,3,6,9}; int i,j,k=2; for(i=0;i { printf(%d ,m[k][i]); } }
①  4 5 6
②  2 5 8
③  3 6 9
④  7 8 9
【单选题】 C语言的if语句嵌套时,if与else的配对关系是().
①  每个else总是与它上面的最近的if配对
②  每个else总是与最外层的if配对
③  每个else与if的配对是任意的
④  每个else总是与它上面的if配对
【单选题】 下列合法的数组定义是()
①  inta[]=string;
②  inta[5]={0,1,2,3,4,5};
③  chara=string;
④  chara[]={0,1,2,3,4,5};
【单选题】 已知字母a的ASCII十进制代码为97,则执行下列语句后的输出结果为(). chara=a;a--; printf(%d,%c\n,a+2-0,a+3-0);
①  b,c
②  a--运算不合法,故有语法错
③  98,c
④  格式描述和输出项不匹配,输出无定值
【单选题】 以下程序段运行后s的值是()。 int a[3][3]={1, 2, 3, 4, 5, 1, 2, 3, 4} ; int i, j, s=1; for(i=0; i for(j=i+1; j s+=a[i][j];
①  6
②  120
③  7
④  240
【单选题】 穷举法的基本要素中确定判断条件一般采用()结构。
①  顺序结构
②  选择结构
③  循环结构
④  递归结构
【单选题】 若intx,y;doublez;以下不合法的scanf函数调用语句是()。
①  scanf(%d%lx,%le,x,y,z);
②  scanf(%2d*%d%lf,x,y,z);
③  scanf(%x%*d%o,x,y);
④  scanf(%x%o%6.2f,x,y,z);
【单选题】 下列语句中,哪一个可以输出26个大写英文字母()。
①  for(a=A;a=Z;printf(%c,++a));
②  for(a=A;aZ;a++)printf(%c,a);
③  for(a=A;a=Z;printf(%c,a++));
④  for(a=A;aZ;printf(%c,++a));
【单选题】 下列能正确定义一维数组a的语句是()。
①  inta(10);
②  intn=10,a[n];
③  intn;scanf(%d,n)inta[n];
④  #definen10inta[n];
【单选题】 下列叙述中,错误的一条是()
①  scanf()函数可以用来输入任何类型的多个数据
②  数组名作函数参数时,也采用值传递方式
③  如果行参发生改变,不会改变主调函数的实参值
④  函数实参与行参的类型应一致