【单选题】【消耗次数:1】
He’s leaving for?Hong Kong?and he’ll stay?[填空]?for two weeks.
at there
there
in there
in here
参考答案:
复制
纠错
相关题目
【单选题】 I’ll stay here?[填空]two weeks.
①  in
②  for
③  at
④  since
【单选题】 I’ll send you a short message as soon as I _______ in Hong Kong.
①  arrived
②  will arrive
③  am going to arrive
④  arrive
【单选题】 My uncle _________ to see me. He’ll be here soon.
①  comes
②  is coming
③  had come
④  came
【单选题】 My uncle ___ to see me. He’ll be here soon.
①  comes
②  is coming
③  had come
④  came
【单选题】 My uncle_______to see me. He’ll be here soon.
①  comes
②  is coming
③  had come
④  came
【单选题】 8. Hong Kong is ______ the south of China, and Macao is ______ the west of Hong Kong.
①  in;to
②  to; to
③  to; in
④  in; in
【单选题】 He [填空] here a minute ago.
①  come
②  came
③  comes
④  has come
【单选题】 He [填空] here next year.
①  isnt working
②  doesnt working
③  isnt going to working
④  wont work
【单选题】 He [填空] here next year.
①  isn't working
②  doesn't working
③  isn't going to working
④  won't work
【单选题】 He’s [填空]singing.
①  fed up
②  tire
③  tired
④  tired of
随机题目
【简答题】 以下程序的输出结果是[填空1]。#include stdio.h void main( ){ int a,b;for(a=1,b=1;aa++){ if (b=10) break;if (b%5==1) { b+=5; continue; } }printf(%d\n }
【简答题】 以下程序输出结果是[填空1]。#include stdio.hvoid main(){ int i, sum=0;for(i=1; i i++)sum+=i;printf(″%d\n″,sum);}
【单选题】 当执行以下程序段时,程序的执行情况是(  )。x=-1;do { x=x*x;} while( !x);
①  循环体将执行一次
②  循环体将执行两次
③  循环体将执行无限次
④  系统将提示有语法错误
【单选题】 若i,j已定义为int类型,则以下程序段中内循环体的总的执行次数是(  )。for (i=4;i;i--)for (j=0;j5;j++){...}
①  20
②  24
③  25
④  30
【单选题】 若i,j已定义为int类型,则以下程序段中内循环体的总的执行次数是(  )。for (i=5;i;i--)for (j=0;jj++){...}
①  30
②  25
③  24
④  20
【单选题】 若i,j已定义为int类型,则以下程序段中内循环体的总的执行次数是(  )。for (i=5;i;i--)for (j=0;jj++){...}
①  20
②  24
③  25
④  30
【单选题】 C语言中while 和do-while 循环的主要区别是(  )。
①  do-while 的循环体不能是复合语句
②  while 的循环控制条件比do-while 的循环控制条件严格
③  do-while 允许从外部转到循环体内
④  do-while的循环体至少无条件执行一次
【单选题】 #include stdio.hvoid main(){ int i,j,k; for(i=1;ii++) for(j=0;jj++) for(k=0;kk++) if( (i*100+j*10+k)==((i*i*i)+(j*j*j)+(k*k*k))) printf(%d%d%d ,i,j,k);}该程序可以输出所有的(  )。
①  素数
②  奇数
③  偶数
④  水仙花数
【单选题】 写出下面程序的执行结果。main(){ int x=1,y=1,z=0;if(z0)if(y0) x=3;else x=5;printf(%d\tif(z=y0) x=3;else if(y= =0 ) x=5;else x=7;printf(%d\tprintf(%d\t
①  1 7 0
②  3 7 0
③  5 5 0
④  1 5 1
【简答题】 以下两条if语句可合并成一条if语句为[填空1]。if(a=b) else if(ab) printf(* * * * y=%d\nelse printf(# # # # x=%d\n