更多“— I’d really like to. I’ll talk to you soon, Debbie. I’m glad I ran into you.—65 ”相关问题
  • 第1题:

    What can I do for you, Madam?

    ()500yuan in cash to my son in Beijing University.

    A、 You’d better remit

    B、 I'd like to remit

    C、 I'd rather remit


    参考答案:B

  • 第2题:

    I′m sorry I can′t see you immediately;but if you′d like to take a seat,I′ll?be with?you__________.

    A.for a moment
    B.in a moment
    C.for the moment
    D.at the moment

    答案:B
    解析:
    【考情点拨】考查词组词义辨析。【应试指导】句意:对不起,我不能马上见你;但是如果你坐下来等我的话,我过一会儿就可以。for a moment一会儿(表示时间段);in a moment过一会儿:for the moment暂时;at the moment此时,此刻。

  • 第3题:

    下面()仅输出m的大于1的最小因子。

    A.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); break; }

    B.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); continue; }

    C.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); }

    D.i=2; while (m % i != 0) i++; printf("%d is 最小因子n", i);


    A

  • 第4题:

    — You’d better have more physical exercise.— _______

    A.I’d like that, but I can’t afford the time.

    B.That’s good.

    C.Really.

    D.Yes, I would.


    参考答案:A

  • 第5题:

    — Nancy was badly injured in the accident yesterday and she was sent to hospital. — Oh, really? I(). I() visit her.

    Adidn’t know;will go to

    Bdon’t know;will go to

    Cdidn’t know;am going to

    Dhaven’t known;am goingt o


    A

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