【单选题】【消耗次数:1】
We ran to the trees, we couldnt see any more monkeys.
but
for
so
and
参考答案:
复制
纠错
相关题目
【单选题】 They couldn’t ______ to fly out to see us, and we couldnt either. We were all poor then.
①  offer
②  afford
③  provide
④  supply
【单选题】 Air is very important, _________ we cannot live any more.
①  without that
②  no which
③  where
④  without which
【单选题】 If we work with a strong will, we can overcome any difficulty, ____ great it is.
①  what
②  how
③  however
④  whatever
【单选题】 We’ll _____you as soon as we have any further information.
①  notify
②  signify
③  communicates
④  impart
【单选题】 We haven`t had any success _______.
①  before long
②  so long
③  by far
④  so far
【单选题】 While we admit his good points, we can see his bad ______.
①  ones
②  one
③  those
④  point
【判断题】 We are more healthy now.
①  正确
②  错误
【单选题】 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
【单选题】 We saw so many ____ flowers when we climbed the mountain.
①  artificial
②  wild
③  manual
④  fake
【单选题】 If we hadn’t got a lift, we ____ the top flat so soon.
①  would not reach
②  can not reach
③  could not have reached
④  will not reach
随机题目
【单选题】 以下不能对二维数组a进行正确初始化的语句是( )。
①  int a[2][3]={0};
②  int a[][3]={{1,2,3},{4,5,6}};
③  int a[2][4]={{1,2,3},{4,5},{6}};
④  int a[][3]={{1,0,1},{},{1,1}};
【单选题】 若有说明,int [3][4];则数组a各元素
①  可在程序的运行阶段得到初值0
②  可在程序的编译阶段得到初值0
③  不能得到确定的初值
④  可在程序的编译或运行阶段得到初值0
【单选题】 若有说明:int a[3][4];则对a数组元素的非法引用是( )。
①  a[0][2*1]
②  a[1][3]
③  a[4-2][0]
④  a[0][4]
【单选题】 以下对一维整型数组a的正确说明是( )。
①  int a(10);
②  int n=10,a[n];
③  int
④  #define SIZE scanf (%, int a[SIZE]; int a[n];
【单选题】 若有说明:int a[3][4]={0};则下面正确的叙述是( )。
①  只有元素a[][]可得到初值0
②  此说明语句不正确
③  数组a中个元素都可以得到初值,但其值不一定为0
④  数组a中每个元素均可得到初值0
【单选题】 以下正确的叙述是( )。
①  continue 语句的作用是结束整个循环的执行。
②  只能在循环体内和switch语句体内使用break语句。
③  在循环体内使用break语句或continue语句的作用相同。
④  从多层循环嵌套中退出时,只能使用goto语句。
【单选题】 以下程序段 x=-1; do {x=x*x;} while(!x);
①  是死循环
②  循环执行两次
③  循环执行一次
④  有语法错误
【单选题】 执行语句for(i=1;i++后变量i的值是( )。
①  3
②  4
③  5
④  不定
【单选题】 以下正确的叙述是( )。
①  goto语句中只能用于退出多层循环
②  switch语句中不能出现continue语句
③  只能用continue语句来终止本次循环
④  在循环中break语句不能独立出现
【单选题】 下述程序的运行结果( )。 #includevoid main() { char ch; int i=0; for(ch=achzch++) { printf(%c ,ch); if(i%10==0) printf(\n } printf(\n }
①  a b c d e f g h i j k l m n o p q r s t u v w x y z
②  a b c d e f g h i j k l m n o p q r s t u v w x y z
③  a b c d e f g h i j k l m n o p q r s t u v w x y z
④  a b c d e f g h i j k l m n o p q r s t u v w x y z