更多“— Do I still have to change my clothes? —________. ”相关问题
  • 第1题:

    -Would you like to go to the cinema?

    -I'd _____to go to the museum.

    A. rather

    B. Prefer

    C. have


    参考答案:B

  • 第2题:

    radiation damage选择

    ____________prevent a lot of radiation damage

    [A] get

    [B] make

    [C] have

    [D] do


    是完型填空吧?你要把整篇都传上来这样片面的截句无法给出答案。

     

  • 第3题:

    以下程序段中,循环次数不超过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);


    int i=10; do{ i=i+1;} while(i<0);

  • 第4题:

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


    正确答案:had

  • 第5题:

    You look() What()you()?

    Atire;did;do

    Btiring;have;done

    Ctired;do;do

    Dtired;have;been doing


    D

  • 第6题:

    以下能正确计算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);


    C