【单选题】【消耗次数:1】
I think we’d better ____ , otherwise we will be late for class.
to hurry up
hurrying up
hurried up
hurry up
参考答案:
复制
纠错
相关题目
【单选题】 Hurry up please, or I’ll be late.
①  Sorry sir, bur the traffic is thick now
②  Well, it’s alright, sir
③  How can you say that, sir?
④  Oh, we are going the right way
【单选题】 — We have to stop talking here. Listen, _____! —Hurry up, or we’ ll be late.
①  There goes the bell
②  There does the bell go
③  There the bell goes
④  Goes the bell there
【单选题】 Hurry up, _____ you’ll be late.
①  or
②  if
③  so
④  as
【单选题】 17. Hurry up, _______ you will miss the train.
①  and
②  so
③  however
④  or
【单选题】 You’ d better add it up; I’ m no good at____.
①  fingers
②  calculate
③  figures
④  image
【单选题】 _____ that we couldn’ t catch up with him.
①  So fast he ran
②  So fast did he run
③  So fast ran he
④  Such fast did he run
【单选题】 Up to now we have ( )the goal we set at the very beginning.
①  assured
②  influenced
③  possessed
④  accomplished
【单选题】 - Shall we sit up here on the grass or down there near the water?
①  I’d rather stay here if you don’t mind
②  Sorry, I don’t like neither
③  Certainly, why not?
④  Yes, we like these two places
【单选题】 Shall we sit up here on the grass or down there near the water?_________
①  I’d rather stay here if you don’t mind.
②  Sorry, I don’t like neither.
③  Certainly, why not?
④  Yes, we like these two places.
【单选题】 We should set up special schools for the ______ people.
①  A.young
②  B.old
③  C.poor
④  D.disabled
随机题目
【单选题】 合法的数组说明语句是(  )。
①  int a[ ]=string
②  int a[5]={0,1,2,3,4,5};
③  char a =string
④  int a[ ]={0,1,2,3,4,5};
【简答题】 字符型数据一般占[填空1]个字节。
【简答题】 下面程序的运行时,输入CLanguage↙,输出是[填空1]。#includestdio.hvoid main( ){ char str[30];scanf(%s,str); printf(%s,str);}
【简答题】 以下程序输入20个数,将其逆序输出。#includestdio.hvoid main() { int a[20],i; for(i=0;ii++) scanf(%d,[填空1]); for(i=19;ii--) printf(%d ,[填空2]); }
【简答题】 字符型数据是以字符的[填空1]代码存储在存储单元中的。
【简答题】 下面程序段的运行结果是[填空1]。char c[5]={a,b,\0,c,\0};printf(%s,c);
【判断题】 二维数组只是逻辑上的概念,在计算机内存中是连续存放的,不是二维的,是线性的。
①  正确
②  错误
【判断题】 C语言中没有字符串类型,也没有字符串变量,字符串是存放在字符型数组中的。
①  正确
②  错误
【单选题】 若有说明:int a[10];,则对a数组元素的正确引用是(  )。
①  a[10]
②  a[3.5]
③  a(5)
④  a[10-10]
【单选题】 以下不能对二维数组a 进行正确初始化的语句是(  )。
①  int a[2][3]={0};
②  int a[][3]={{1,2},{0}};
③  int a[2][3]={{1,2},{3,4},{5,6}}
④  int a[][3]={1,2,3,4,5,6};