【单选题】【消耗次数: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
随机题目
【单选题】 下列运算符中优先级最高的是().
① 
②  +
③ 
④  !=
【单选题】 树上有10只鸟,开枪打死一只,还剩几只()。
①  不确定
②  还有一只
③  零只
④  九只
【单选题】 下面关于基本数据类型描述错误的是()。
①  整型int在内存中占用4字节
②  浮点型float在内存中占用8字节
③  字符型char在内存中占用1个字节
④  整型long int 长整型占用4个字节
【单选题】 若有说明语句:int a[2][3]={0};,则下面正确的叙述是()。
①  此语句说明不正确
②  只有a[0][0]可以得到初值0
③  数组中的每个元素可以得到初值0
④  数组中的每个元素可以得到初值,但不一定为0
【单选题】 以下能正确计算1×2×3×…×10的程序段是()。
①  do{ i=1 s=1 s=s*i i++}while(i=9)
②  do{i=1 s=1 s=s*i i++ }while(i=10)
③  i=1 s=1 do{s=s*i i++ }while(i=10)
④  i=1 s=1 do{s=s*i i++ }while(i=9)
【单选题】 要定义字符型变量a并赋初值,()是正确的。
①  chara=3;
②  chara=3;
③  chara=%;
④  chara=*;
【单选题】 ()来控制循环结束的循环结构是计数控制的循环。
①  由条件控制的循环
②  由明确的次数
③  Raptor操作
④  其它都不对
【单选题】 在C语言中,若有数组charb[]={‘A’,’B’,’C’,’D’,’E’,’F’};则数组b的长度分别是()
①  5
②  6
③  7
④  8
【单选题】 定义了一个共用体类型的变量,要使用其成员,则应该在变量和成员之间加()
①  .
② 
③ 
④  -
【单选题】 下列关于对象的描述中,正确的是()。
①  一个类可以定义多个对象
②  定义对象时系统会对它进行初始化
③  一个类的对象不可以作另个类的成员
④  对象的存储类可以是相同的