【单选题】【消耗次数:1】
8. ______, he was honest.
As he was poor
Being poor
Poor as he was
He was poor
参考答案:
复制
纠错
相关题目
【单选题】 ___ he is poor, he is well contented.
①  although
②  if
③  unless
④  while
【单选题】 The rich get __________ and the poor get _________.
①  richer, poorer
②  B.
③  richer, poor
④  rich, poor
⑤  rich, poorer
【单选题】 They _______ lots of food and drinks to the poor.
①  sent
②  were sent
③  send
④  were sending
【单选题】 Poor health can be[填空] to unemployment.
①  own
②  due
③  /
④  lead
【单选题】 The poor child was ( ) by his parents soon after his birth.
①  accomplished
②  assured
③  astute
④  abandoned
【单选题】 Many a customer____ about the poor quality of the washing machine.
①  complains
②  complain
③  are complaining
④  have complained
【简答题】 What did the poor farmer and his wife do to earn a living?
【单选题】 —How many poor counties will there be in our province by 2020?—There will be only a few, if _______.
①  much
②  some
③  any
④  many
【单选题】 Never in my wildest dreams ___ these people are living in such poor conditions.
①  I could imagine
②  ?could I imagine
③  ?I couldn’t imagine
④  ?couldn’t I imagine
【单选题】 —How many poor counties will there be in our province by 2010?—There will be only a few, if _______.
①  much
②  some
③  any
④  many
随机题目
【单选题】 设int a=2,b;则执行b=a8;语句后,b的结果是( )
①  0
②  1
③  2
④  3
【单选题】 C语言中的头文件引入的关键字是
①  import
②  using
③  include
④  define
【单选题】 循环嵌套的概念哪个是对的
①  while可以嵌套for,不能嵌套dowhile
②  dowhile不能嵌套for循环语句,可以嵌套while循环语句
③  dowhile、while、for可以互相嵌套
④  for后不只能嵌套for循环语句
【单选题】 以下程序的输出结果是_______? f(int b[],int m,int n) { int i,s=0; for(i=m;in;i=i+2) s=s+b[i]; return s; } int main() { int x,a[]={1,2,3,4,5,6,7,8,9}; x=f(a,3,7); printf(%d\n,x); }
①  7
②  8
③  9
④  10
【单选题】 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]);