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
第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题:
第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
第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
第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; }
第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); }