网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
— Do I still have to change my clothes? —________.


参考答案

更多 “ — Do I still have to change my clothes? —________. ” 相关考题
考题 You look(). What () you () ? A、tire, did…doB、tiring, have…doneC、tired, do…doD、tired, have…been doing

考题 9. _______you _______ stay at home today?A. Do ; have toB. Must; have toC. Have; toD. Do ; must

考题 If only we______(have)a phone! I'm tired of waiting outside the public phone box.

考题 —Where____you____lunch?—Athome.TherewasnoschoollunchA.did;haveB.are;havingC.will;haveD.do;have

考题 -Would you like to go to the cinema?-I'd _____to go to the museum.A. ratherB. PreferC. have

考题 —I'd met Smith several times before.—So (have) ( ) I.

考题 radiation damage选择 ____________preventalotofradiationdamage[A]get[B]make[C]have[D]do

考题 You look() What()you()?Atire;did;doBtiring;have;doneCtired;do;doDtired;have;been doing

考题 以下程序段中,循环次数不超过10的是()A.int i=10; do{ i=i+1;} while(i<0);B.int i=5; do{ i+=1;} while(i>0);C.int i=1; do{ i+=2;} while(i!=10);D.int i=6; do{ i-=2;} while(i!=1);

考题 以下能正确计算1+2+3+…+10的程序段是 。A.i=1; s=1; do {s=s+i; i++;} while (i<10);B.do {i=1;s=0; s=s+i; i++;} while (i<=10);C.do {i=1;s=1; s=s+i; i++;} while (i<=10);D.i=1,s=0; do {s=s+i; i++;} while (i<=10);E.i=1; s=1; do {s=s+i; i++;} while (i<=10);F.i=1,s=0; do {s=s+i; i++;} while (i<10);