If I hadn’t listened to you, I would _have made_ (make) such a silly mistake.
第1题:
It was raining outside, I ( ) one umbrella and walked out.
A.picked up
B.take up
C.have
D.make
第2题:
you had some trouble finding where i live, ______?
A、didn’t you
B、hadn’t you
C、do I
D、don’I
第3题:
有以下程序: #include<stdio.h> #include<string.h> main( ) { char a[5][10]={"china","beijing","you","tiananmen","welcome"); int i,j;char t[10]; for(i=0;i<4;i++) for(j=i+1;j<5;j++) if(strcmp(a[i],a[j]>O) {strcpy(t,a[i]);strepy(a[i],a[j]);strcpy(a[j],t)}; puts(a[3]); } 程序运行后的输出结果是( )。
A.beijing
B.china
C.welcome
D.tiananmen
第4题:
I () roast leg of lamb, please.
A、will like
B、would like
C、would
第5题:
A. haven’t
B. don’t
C. didn’t
D. hadn’t
第6题:
有以下程序
#nclude<stdio.h>
#include<string.h>
main()
{ char a[5][10]={"china","beijing","you","tiananmen","welcome"};
int i,j;char t[10];
for(i=0;i<4;i++)
for(j=i+1;j<5;j++)
if(strcmp(a[i],a[j])>0)
{strcpy(t,a[i]);strcpy(a[i],a[j]);strcpy(a[j],t);}
puts(a[3]);
}
程序运行后的输出结果是
A.beijing
B.china
C.welcome
D.tiananmen