I love traveling in the countryside, but I don't like losing my way. I went on a trip recently, but my trip took me longer than I expecteD."I'm going to Woodford Green," I said to the conductor as I got on the bus, "but I don't know where it is.""I'll tel

题目

I love traveling in the countryside, but I don't like losing my way. I went on a trip recently, but my trip took me longer than I expecteD.

"I'm going to Woodford Green," I said to the conductor as I got on the bus, "but I don't know where it is."

"I'll tell you where to get off," answered the conductor.

I sat in the front of the bus to get a good view of the countryside. After some time, the bus stoppeD.Looking around, I realized with a shock that I was the only passenger left on the bus.

"You'll have to get off here," the conductor saiD."This is as far as we go."

"Is this Woodford Green?" I askeD.

"Oh, dear," said the conductor suddenly. "I forgot to put you off."

"It doesn't matter," I saiD."I'll get off here."

"We are going back now," said the conductor.

"Well, in that case, I would prefer to stay on the bus," I answereD.

1. The conductor ________.

:A.got angry when he found out the author was still on the bus

B.wanted to make a joke with the author

C.was rude to the author at first

D.forgot to tell the author where to get off the bus


相似考题
更多“I love traveling in the countryside, but I don't like losing my way. I went on a t ”相关问题
  • 第1题:

    I’d rather you ________ make any comment on the issue for the time being.

    A) don’t     B) wouldn’t     C) didn’t            D) shouldn’t    

     


    选C
    would rather that……"宁愿……",that从句中用过去时表示现在或将来要做的事。

  • 第2题:

    如下电路中,t<2s,电流为2A,方向由a流向b;t>2s,电流3A方向由b流向a,参考方向如图所示,则I(t)为()。

    A.I(t)=2A,t<2s;I(t)=3A,t>2s
    B.I(t)=2A,t<2s;I(t)=-3A,t>2s
    C.I(t)=-2A,t<3s;I(t)=3A,t>2s
    D.I(t)=-2A,t<2s;I(t)=-3A,t>2s

    答案:B
    解析:
    由题意可知:按图示电流的方向为a→b为正。当t<2s,电流方向与参考方向一致,则I(t)=2A;t>2s时,电流方向与参考方向相反,则I(t)=-3A。

  • 第3题:

    下面程序的功能是计算1-3+5-7+ …… -99+101的值。 ① main() { int i,t=1,s=0; for(i=1;i<=101;i+=2) { ① ; s=s+t; ② ; } printf(”%dn”,s}; }

    A.t = i * t

    B.t = i * (t+1)

    C.t = (i+1)* t

    D.t = (i-1) * t


    b=i+1 b=i+1

  • 第4题:

    -- Ann is in hospital.

    -- Oh, really? I __ know. I __ go and visit her.

    A. didn’t; am going to B. don’t; would

    C. don’t; will D. didn't; will


    正确答案:D

  • 第5题:

    输入hello↙,写出下面程序的运行结果。 #include <stdio.h> #include <string.h> int main() { char s[80],t[200]; int i,sl ; gets(s); sl = strlen(s); for(i=0 ;i<sl ;i++) t[i]=s[sl-i-1] ; for (i=0; i<sl; i++) t[sl+i] = s[i]; t[sl+i]='0' ; puts(t); return 0; }


    ollehhello

  • 第6题:

    【填空题】下面程序的运行结果是 。 #include<stdio.h> main() {int i,t,sum=0; for(t=i=1;i<=10;) {sum+=t;++i; if(i%3==0) t=-i; else t=i; } printf("sum=%d",sum); }


    abcee