【单选题】【消耗次数:1】
I understand ____ preparation that staff must put in under pressure to meet the deadline.
more than the enormous amount of
better than most the enormous number of
better than most the enormous amount of
fewer than the number of
参考答案:
复制
纠错
➡️如需代学继续教育,联系微信:yizhituziang

相关题目
【单选题】 I like this jacket better than that one, but it costs twice ______.
①  as much
②  so much
③  that much
④  too much
【单选题】 I feel [填空] better than several days ago.
①  more
②  very
③  the
④  much
【单选题】 [填空]is better than cure.
①  Prevent
②  Prevented
③  Prevention
④  Preventions
【单选题】 It is better to die ones feet than _______.
①  living on ones knees
②  live on ones knees
③  on ones knees
④  to live on ones knees
【判断题】 This book is better than that one.
①  正确
②  错误
【单选题】 Mike is better than Peter ____ swimming.
①  at
②  for
③  on
④  about
【单选题】 Our food and service are better than _____ used to be.
①  it
②  we
③  they
④  them
【单选题】 You are better at carrying out decision than _______plans.
①  to make
②  make
③  making
【单选题】 The TV sets made in China are much better than ______ in Japan.
①  that
②  those
③  them
④  it
【单选题】 You should know better than ____ your little sister at home by herself.
①  to leave
②  leaving
③  to have left
④  left
随机题目
【单选题】 1. 对下面程序段描述正确的是int x=0,s=0; while (x!=0) s=s+x+1;printf(%d
①  运行程序段后输出0
②  运行程序段后输出1
③  程序段中的控制表达式是非法的
④  程序段循环无数次
【单选题】 在循环语句的循环体中,continue语句的作用是(  )。
①  立即终止整个循环
②  继续执行continue语句之后的循环体
③  结束本次循环
④  结束本次循环并跳出循环
【单选题】 printf中要输出整形变量,占位符为
①  %c
②  %s
③  %f
④  %d
【单选题】 若变量已正确定义,有以下程序段int a=3,b=5,c=7;if(ab)a=b;c=a;if(c!=a)c=b;;printf(%d,%d,%d\na,b,c)其输出结果是
①  语法错误
②  3,5,3
③  3,5,5
④  3,5,7
【单选题】 下列程序执行后的输出结果是________. #include stdio.h void main( ) { int a=5,b=60,c; if (ab) {c=a*b;printf(%d*%d=%d\n,b,a,c);} else {c=b/a;printf(%d/%d=%d\n,b,a,c);} }
①  60/5=12
②  300
③  60*5=300
④  12
【单选题】 已有以下数组定义和f函数调用语句,int a[3][4];f(a);则在f函数的说明中,对形参数组array的错误定义方式为:
①  f(int array[][6]);
②  f(int array[3][]);
③  f(int array[][4]);
④  f(int array[2][5]);
【单选题】 下面代码:int a[5];int *p;a[0]=1;a[1]=2;p=a;*p的值
①  a
②  1
③  2
④  null
【单选题】 下列标识符定义正确的是
①  c345
②  23ab
③  crystal@qq.com
④  include
【单选题】 执行 int a=5%2后a的值
①  1
②  2
③  2.5
④  3
【单选题】 for(表达式1;;表达式3)可理解为____。
①  for(表达式1;0;表达式3)
②  for(表达式1; 表达式1;表达式3)
③  for(表达式1; 表达式3;表达式3)
④  for(表达式1;1;表达式3)