更多“--- Shall we see a film tonight?--- _____________.A. I’d rather not, I ’m quite tiredB. ”相关问题
  • 第1题:

    Susan: Betty, we'd like you to join us at a buffet party next Saturday.

    Betty: ___________, Susan. What time do you expect me to be there?

    A、I'd love to

    B、No way

    C、By no means

    D、I'm afraid not


    参考答案:A

  • 第2题:

    I′ll consider?Ms.Smith tonight,but I am not sure if I have the time.

    A.to see
    B.seeing
    C.to have seen
    D.see

    答案:B
    解析:
    【考情点拨】考查consider的用法。【应试指导】句意:我会考虑今晚去看史密斯小姐,但我不确定我有没有时间。consider后面需要接动名词形式.故选B。

  • 第3题:

    克山病是哪种微量元素缺乏引起的?

    A.Fe

    B.Cu

    C.Zn

    D.Se

    E.I


    Se

  • 第4题:

    —Hurry up! We ________ for you at the gate. 学科网 —I’m sorry .I’m coming soon.学科

    —Hurry up! We ________ for you at the gate.

    —I’m sorry .I’m coming soon.

    A. waits B. waited C. are waiting


    正确答案:C

  • 第5题:

    我热切期盼能很快见到您。 I'm looking forward to (see)you soon.


    我期待着收到您的回信。

  • 第6题:

    下面()是正确的判断素数程序(m>1)。

    A.j=0; for (i =2; i<=m-1; i++) if (m % i != 0) j++; if(j==m-2) printf(“%d是素数n", m);

    B.j=0; for (i =2; i<=m-1; i++) if (m % i == 0) j++; if(j==0) printf(“%d是素数n", m);

    C.flag=0; for (i =2; i<=m-1; i++) if (m % i == 0) flag=1; if(flag==0) printf(“%d是素数n", m);

    D.for (i =2; i<=m-1; i++) if (m % i == 0) i=m+2; if(i==m+3) printf(“%d是素数n", m);


    D