【单选题】【消耗次数:1】
You [填空] look for exercise opportunities all the time.
should
should to
goes
needs
参考答案:
复制
纠错
相关题目
【单选题】 You should give your children more opportunities to have personal time and space to ( ) with friends or do whatever they want.
①  hang out
②  hang up
③  hang on
④  hang in
【单选题】 You should [填空] smoking.
①  grow up
②  pick up
③  give up
④  set up
【单选题】 We should bear in [] all these important rules.
①  mind
②  heart
【单选题】 All medicines should be kept out of____ of children.
①  touch
②  reach
③  get
④  attain
【判断题】 Above all we should do this thing correctly.
①  正确
②  错误
【单选题】 I look younger because I do _________ exercise than you.
①  many
②  much
③  more
④  most
【单选题】 You should concentrate ( ) your study.
①  to
②  from
③  on
④  of
【单选题】 You look _______. Did you have a rest all night?
①  tire
②  tired
③  tiring
【单选题】 9. All correspondence ______ to the editor should be sent by airmail.
①  addressed
②  sent
③  signaled
④  went
【单选题】 2. You should deliberate over the question before you_______it.
①  response to
②  respond to
③  retellfrom
④  delete
随机题目
【单选题】 在函数定义的参数表中,也可以使用函数参数,假定一个函数参数说明为int ff(int),则等价的函数指针说明为( )。
①  int *ff(int)
②  int ff
③  int *ff
④  int (*ff)(int)
【单选题】 随机函数rand()%20的值在整数( )区间内。
①  1和20
②  1和19
③  0和19
④  0和20
【单选题】 一个函数定义由( )两部分组成。
①  函数头和函数体
②  函数头和函数尾
③  函数原型和函数体
④  函数名和参数表
【单选题】 假定一个函数的二维数组参数说明为char w[][N],则与之等价的指针参数说明为( )。
①  char(*w)[N]
②  char *w [N]
③  char(*w) N
④  char** a
【单选题】 假定一个函数的参数说明为const int a,则在函数体中执行( )操作非法。
①  printf(“%d”,a)
②  a==0
③  int x=a
④  a=10
【单选题】 在函数体中又调用自身函数则称为( )调用。
①  非递归
②  直接递归
③  间接递归
④  末尾递归
【单选题】 假定a是一个数组名,则a[i]的指针访问方式为( )。
①  sizeof(a[i])
②  *a+i
③  a+i
④  *(a+i)
【单选题】 假定x=-4.6,则表达式floor(x)和ceil(x)的值分别为( )。
①  5.0和-5.0
②  -4.0和-4.0
③  -4.0和-5.0
④  -5.0和-4.0
【单选题】 假定一个函数的数组参数说明为char a[],则与之等价的指针参数说明为( )。
①  char
②  char* a
③  char a
④  char** a
【单选题】 假定一个结构类型的定义为“struct C{double* a[4];int n;};”,则该类型的长度为( )。
①  20
②  21
③  22
④  24