【单选题】【消耗次数:1】
They stopped ___ when it rained.
playing
to play
played
参考答案:
复制
纠错
相关题目
【单选题】 I _____ online games when my father came back.A. played B. am playing C. have played D. was playing
①  am playing
②  played
③  have played
④  was playing
【判断题】 It rained heavy yesterday.
①  正确
②  错误
【单选题】 This is the same game ( ) I played yesterday.
①  which
②  it
③  that
④  as
【单选题】 I hurt my knee, so I stopped _______ football last month.
①  playing
②  play
③  to play
【单选题】 It was ___ it rained heavily that they didn’t come.
①  as
②  because
③  for
④  since
【单选题】 The reason why the car was stopped was ____.
①  that the road was slippery
②  due to the slippery road
③  because the road was slippery
④  because of the slippery road
【单选题】 What role does a teacher play in the following activity? When students are doing a group-work task, the teacher joins one or two groups for a short period of time.
①  Controller
②  Assessor
③  participant
④  Resource-provider.
【单选题】 Not until the rain stopped [填空]the room.
①  did he leave
②  he left
③  left he
④  did leave he
【单选题】 Never get off the bus ____it has stopped.
①  if
②  as soon as
③  until
④  or
【单选题】 If motorists do not observe the traffic regulations, they will be stopped, ticked, and _______.
①  have to pay a fine
②  to pay a fine
③  fined
④  fired
随机题目
【单选题】 十进制数16的十六进制数是()
①  11
②  12
③  13
④  10
【单选题】 下面程序的运行结果是() #include stdio.h main( ) { char a[]=morning,t; int i,j=0; for(i=1;i if(a[j]j=i; t=a[j]; a[j]=a[7]; a[7]=a[j]; puts(a); }
①  mogninr
②  mo
③  morning
④  mornin
【单选题】 选择出合法的if语句(设int x,a,b,c;)()。
①  if(a==b)x++
②  if(a=b)x++
③  if(ab)x++
④  if(a=b)x++
【单选题】 若有定义int *f();则在此定义了一个()。
①  指向整型函数的指针变量
②  基类型为整型的指针变量
③  返回整型指针值的函数
④  不符合C 语言语法
【单选题】 变量的有效范围与其定义位置有关,(),其作用域在整个源程序文件中都有效。
①  在第一个函数中定义的变量
②  在定义第一个函数之前所定义的变量
③  在主函数中定义的变量
④  在函数中定义的静态变量
【单选题】 有以下程序,程序执行后的输出结果是( ) #include int fun(int x [ ],int n) { static int sum=0,i; for(i=0; i{ sum+=x[i]; } return sum; } void main( ) { int a[ ]={1,2,3,4,5}; int b[ ]={6,7,8,9},s=0; s=fun(a,5)+fun(b,4); printf(%d\n,s); }
①  45
②  50
③  60
④  66
【单选题】 若有定义int a,x;则语句a=(x=8,x+8);运行后,变量a,x的值依次为()
①  16,8
②  8,8
③  16,16
④  8,16
【单选题】 下列函数中,能够从键盘上获得一个字符数据的函数是()。
①  puts()
②  putchar()
③  getchar()
④  gets()
【单选题】 inta=1,b=2,c=3; if(a>b)a=b; if(a>c)a=c; 则a的值为().
①  1
②  2
③  3
④  不一定
【单选题】 设有int a=3,a+=a-=a*a 的值是()。
①  18
②  9
③  -12
④  3