一____________?一I’v never been there but I hope to go there in the future.A .Where are you going for holidayB. Have you been to AmericaC. What did you do last week
一____________?
一I’v never been there but I hope to go there in the future.
A .Where are you going for holiday
B. Have you been to America
C. What did you do last week
相关考题:
I, my, will, true, come, hope, dream__________________________________________________________________________.
1.—_________ .Where's the fruit shop?—I'm sorry.I'm new here.A.SorryB.I’m sorryC. OKD.Excuse me
2.I _________to visit Guilin and I_________ you to go with me.A. wish ; hopeB. hope; wishC. hope; wish forD. wish; hope that
My sister has_____ been to the Summer Palace. I ’m going to take her there.A.everB.sometimeC.never
If you _______ out to play, I _______ along with you. A.were, will goB.go, have been goneC.go, will goD.are going, am going
大多数药物出现作用由快到慢的顺序为A.p.o.>i.h.>i.m.>i.v.B.i.h.>i.m.>i.v.>p.o.C.i.m.>i.v.>p.o.>i.h.D.i.v.>p.o.>i.h.>i.m.E.i.v.>i.m.>i.h.>p.o.
如下程序实现对数组v按从大到小进行排序,请补充完善。 main() { int x,v[]={41,3,4,16,7,8,10,113,14},n=9; int i, j, k; for (i=0; i<n;i++) { k=i; for (j= i+1;j<n;j++) if (v[j]>v[k]) k=j; if(i!=k) { v[i] = v[i]+v[k]; 【1】 ; 【2】 ; } } for (i=0; i<n;i++) printf("%d ",v[i]); }