【单选题】【消耗次数:1】
The museum is quite far.It will take you half [填空] hour to get there by [填空] bus.
an,/
an,a
a,/
/,/
参考答案:
复制
纠错
相关题目
【单选题】 It [填空] him half an hour to write the letter.
①  take
②  takes
③  took
④  taking
【单选题】 Mike?told?me?to?get?there [填空]?half?past?nine.
①  in
②  at
③  on
④  of
【单选题】 A: How long does it take to get to your house by bus? B: [填空]. I think the tube is your best choice. A: Many thanks.
①  I dont know yet
②  It depends on the traffic
③  Let me see
④  Youll consider the distance
【单选题】 By the time you get there, the guests will [填空].
①  have left
②  leave
③  left
④  be leaving
【判断题】 A: Must I take a taxi? B: No, you must not. You can take a bus.
①  正确
②  错误
【单选题】 A: Must I take a train? B: No, you [填空]. You can take a plane.
①  dont
②  must not
③  dont have to
④  can not
【单选题】 Did you get used to [填空]emails?
①  writing
②  wrote
③  write
④  written
【单选题】 If you multiply 3 [填空]4, you get 12.
①  by
②  with
③  of
④  in
【判断题】 A: How soon can you finish the work? B: About half an hour.
①  正确
②  错误
【单选题】 I hope you [填空]get better soon.
①  do
②  /
③  must
④  will
随机题目
【多选题】 以下关于typedef的叙述正确的是( )。
①  用typedef可以定义各种类型名,但不能用来定义变量
②  用typedef可以增加新类型
③  用typedef只是将已存在的类型用一个新的名字来代表
④  使用typedef便于程序的通用
【多选题】 以下对C语言中的函数描述不正确的有( )。
①  可以嵌套定义,不可以嵌套调用
②  不可以嵌套定义,可以嵌套调用
③  可以嵌套定义,也可以嵌套调用
④  嵌套定义和嵌套调用都不允许
【多选题】 以下叙述正确的是( )。
①  C语言严格区分大小写英文字母
②  C语言用\作为语句分隔符
③  C程序书写格式自由,一行内可以写几个语句,一个语句也可以写在几行上.
④  可以使用/*…*/对C程序中的任何部分作注释
【单选题】 已知定义语句float p= 123.456;,则执行语句printf(%f,%8.2f,%.0f,p,p,p);的输出结果是( )。
①  123,123.45 ,123.46
②  123.456,123.45 ,123.00
③  123.456000, 123.45,123
④  123.456,123.45,123
【单选题】 下面程序的功能是将从键盘输入的一组字符统计出大写字母的个数m和小写字母的个数 n,并输出m、n中的较大数,则括号内应填写( )。 #include main() { int m=0,n=0; char c; while( )!=\n) { if(c>=A&&c=a&&c<=z) n++; } printf(%d\n,m<n? n:m );
①  C
②  c=getchar()
③  getchar()
④  c==getchar()
【单选题】 #define X a+b main( ) { int a=3,b=4,s1; s1=2*X; printf(%d\n,s1); },以上程序的运行结果是( )?
①  8
②  14
③  10
④  6
【单选题】 下面叙述正确的是( )?
①  可以把define和if定义为用户标识符
②  可以把define定义为用户标识符,但不能if定义为用户标识符
③  可以把if定义为用户标识符,但不能define定义为用户标识符
④  define和if都不能定义为用户标识符
【单选题】 C语言中while和do-while循环的主要区别是( )?
①  do-while的循环体至少无条件执行一次
②  while的循环控制条件比do-while的循环控制条件严格
③  do-while允许从外部跳转到循环体内
④  do-while的循环体不能是复合语句
【单选题】 一个函数的返回值由( )确定。
①  return语句中的表达式
②  调用函数的类型
③  系统默认的类型
④  被调用函数的类型
【单选题】 在C语言中,引用数组元素时,其数组下标的数据类型允许是( )?
①  整型常量
②  整型表达式
③  整型常量或整型表达式
④  任何类型的表达式