【单选题】【消耗次数:1】
We feel it is high time that the Government ____ something to check the inflation.
did
do
should do
would do
参考答案:
复制
纠错
相关题目
【单选题】 We feel it is high time that the Government _____something to check the inflation.
①  did
②  do
③  should do
④  would do
【判断题】 Above all we should do this thing correctly.
①  正确
②  错误
【判断题】 A: What should we do this evening? B: You say.
①  正确
②  错误
【单选题】 — Do you want to go to see a movie?— ______________ I feel like doing something different.
①  Dont mention it.
②  Yes. I want it.
③  Not really.
④  Adeal.
【多选题】 _____________ , computers can do many of the things we do, but faster and better.
①  In time
②  In fact
③  Actually
④  As a matter of fact
【单选题】 We are interested in the weather because it __________ us so directly --- what we wear, what we do, and even how we feel.
①  benefits
②  affects
③  guides
④  effects
【单选题】 If I ___ it, I would do it in a different way.
①  were to do
②  do
③  had done
④  was to do
【多选题】 Why do you forget something? What is the reason? You did not learn it_________ . This is the major reason for forgetting.
①  in the beginning
②  at the beginning
③  at first
④  at last
【单选题】 I really do not know whether we can succeed, so do not expect ____.
①  too much of us
②  us too much
③  of us too much
④  us of too much
【单选题】 —How do you feel about your family life? — .
①  Good. It’s a good choice to work there.
②  Not bad. I think it is a good choice to be a full-time mother.
③  Not bad. I have visited their family a lot of times.
随机题目
【单选题】 以下叙述中不正确的是()。
①  在一个函数中,可以有多条return语句
②  函数的定义不能嵌套,但函数的调用可以嵌套
③  函数必须有返回值
④  不同的函数中可以使用相同名字的变量
【单选题】 函数调用func((exp1,exp2),(exp3,exp4,exp5))中所含实参的个数为( )个。
①  1
②  2
③  4
④  5
【单选题】 为了提高程序的运行速度,可将不太复杂的功能用函数实现,此函数应选择()。
①  内联函数
②  重载函数
③  递归函数
④  函数模板
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[2][1]的值为()。
①  0
②  4
③  8
④  6
【单选题】 在下面的一维数组定义中,哪一个有语法错误。()
①  int a[]={1,2,3};
②  int a[10]={0};
③  int a[];
④  int a[5];
【单选题】 在下面循环语句中循环体执行的次数为()。 for(int i=0; in/2) break;
①  n/2
②  n/2+1
③  n/2-1
④  n-1
【单选题】 循环体至少被执行一次的语句为()。
①  for循环
②  while循环
③  do循环
④  任一种循环
【单选题】 在下面循环语句中循环体执行的次数为()。 int i=0; do i++; while(i*i
①  4
②  3
③  5
④  2
【单选题】 在下面循环语句中内层循环体S语句的执行总次数为()。 for(int i=0; i i++) for(int j=i; j j++) S;
①  n2
②  (n+1)/2
③  n(n-1)/2
④  n(n+1)/2
【单选题】 do语句能够改写为()语句。
①  复合
②  if
③  switch
④  while