更多“As far as I am concerned, some days are lucky while others seem marked by bad () . ”相关问题
  • 第1题:

    A:I'm keen on football.

    B: So ( )I.

    A. have

    B. do

    C. am


    答案:B

  • 第2题:

    I'm content with the way the campaign has gone.

    A:tied
    B:satisfied
    C:filled
    D:concerned

    答案:B
    解析:

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

    A: I’d like ________ information about the school. B: You could have ________ word with the schoolmaster.

    A.some / a

    B.an / some

    C.some / some


    参考答案:A

  • 第5题:

    --I' d like ___________ information about the management of your hotel, please.
    --Well, you could haveword with the manager, which might be helpful.

    A.some ; a
    B.an ; some
    C.some; some
    D.an; a

    答案:A
    解析:
    information在此为不可数名词,故可排除B、D两个选项;have a word with sb.为固定短语。意思是“跟……说句话”。

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