【单选题】【消耗次数:1】
MissMartinhasdevotedallherlifeto_____disabledpeople.
behelped
helping
behelping
help
参考答案:
复制
纠错
相关题目
【单选题】 Nobody knows his _____ for helping us.
①  motive
②  motion
③  mood
④  moral
【判断题】 A: Thank you for helping us. B: Its nice to say so.
①  正确
②  错误
【单选题】 Mr. Kent is one of those happy people whopleasure from helping others.
①  deceive
②  deprive
③  devise
④  derive
【单选题】 Help __________.
①  you
②  yourself
③  yourselfs
④  your
【判断题】 I will help you do it. = I will help you to do it.
①  正确
②  错误
【单选题】 Please help yourself to the fish.
①  Thanks, but fish doesn’t agree with me
②  Sorry, I can’t help
③  I don’t like fish
④  No, I can’t
【单选题】 1. I help him ____ he helps me. We help each other.
①  but
②  and
③  or
④  though
【单选题】 Let me help you with the ( ).
①  baggage
②  thing
③  bag
④  package
【单选题】 But for your help, we could not __________ .
①  succeed
②  have succeeded
【单选题】 Could you help [填空]?
①  I
②  me
③  my
④  mine
随机题目
【单选题】 下述程序的运行结果( )。 #includevoid main() { int a=4,b=3,c=5,t=0; if(aa=b;b=t; if(aa=c;c=t; printf(%d,%d,%d\n,a,b,c); }
①  5,1,3
②  4,5,6
③  5,0,3
④  3,4,7
【单选题】 下述程序的运行结果( )。 #includevoid main() { int x=1,a=0,b=0; switch(x) { case 0:b++; case 1:a++; case 2:a++;b++; } printf(a=%d,b=%d\n,a,b); }
①  a=2,b=1
②  a=1,b=2
③  a=0,b=1
④  a=1,b=0
【单选题】 下述程序的运行结果( )。 #includevoid main() { int x=1,a=0,b=0; switch(x) { case 0:b++; case 1:a++; case 2:a++;b++; } printf(a=%d,b=%d\n,a,b); } case 1:a++; case 2:a++;b++; } printf(a=%d,b=%d\n,a,b); }
①  a=1,b=1
②  a=2 ,b=1
③  a=2,b=2
④  a=3,b=3
【单选题】 请阅读以下程序: main() {int a=5,b=0,c=0; if(a=b+c) printf(***\n else printf($$$\n
①  以上程序:有语法错误不能通过编译
②  可以通过编译但不能通过连接
③  输出***
④  输出$$$
【单选题】 以下不正确的if语句形式是( )。
①  if (xx!=y)
②  if(x==y)x+=y
③  if(x!=y)scanf(%d,x)else scanf(%d,
④  if(XY) {X++;Y++};
【单选题】 下述程序的运行结果( )。 #includevoid main() { int a=1,b=2,c=3; if(c=a)printf(%d\n else printf(%d\n }
①  1
②  3
③  5
④  6
【单选题】 下述程序的运行结果( )。 #includevoid main() { int a=5,b=4,c=3,d=2; if(ac)printf(%d\n else if((c-1=d)==1)printf(%d\n,d+1); else printf(%d\n,d+2); }
①  0
②  1
③  2
④  3
【单选题】 以下不正确的语句为( )。
①  if(x
②  if(x=y)(x!=0)x+=y;
③  if(x!=y)scanf(%d,else scanf(%d,y)
④  if(xy){x++;y++;}
【单选题】 以下程序的运行结果是( )。 Main() {int k=4,a=3,b=2,c=; printf(\n %d\n,ka?k:cb?c:a); }
①  4
②  3
③  2
④  1
【单选题】 有如下程序段,从键盘输入数据的正确形式应是( )。(注:?代表空格) int x,y,z; scanf(x=%d,y=%d,z=%d,x,y,
①  123
②  x=1, y=2, z=3
③  1, 2, 3
④  x=1?y=2?z=3