niusouti.com
参考答案和解析
参考答案:A
更多“I'm going to do all I can to ______ the unpleasant impressions you have of me. ”相关问题
  • 第1题:

    —Where____you____lunch?

    —Athome.Therewasnoschoollunch

    A.did;have

    B.are;having

    C.will;have

    D.do;have


    正确答案:A

  • 第2题:

    以下程序的输出结果是()。main(){char*a[][5]={“how”,”do”,”you”,”do”,”!”};char**p;inti;p=a;for(i=0;i<4;i++);printf(“%s”,p[i]);}()

    A.howdoyoudo!

    B.how

    C.howdoyoudo

    D.hdyd


    正确答案:C

  • 第3题:

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

  • 第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题:

    下面程序段的运行结果是()。 int m[]={5,8,7,6,9,2},i=1; do{ m[i]+=2; } while(m[++i]>5); for(i=0;i<6;i++) printf("%d ",m[i]);

    A.7 10 9 8 11 4

    B.7 10 9 8 11 2

    C.5 10 9 8 11 2

    D.5 10 9 8 11 4


    B