--I'd like to invite you to a concert this evening.--Thank you, but () I'll be free I'm not sure at that moment.
A. while
B. if
C. when
D. whether
查看答案
The food______ delicious.
A. sounds
B. tastes
C. feels
D. looks
Where can tourists try the local cuisine
A. In Chisom, a quaint summer-resort village.
B. In Hampson Valley, great mountains.
C. In a bungalow rented for the tourists.
D. At Mountain View Camping Groun
Suddenly I heard a()voice of my friend Tom.
A. similar
B. same
C. familiar
D. strange
下列程序的运行结果是 ______。 void fun(int * a,int *B) int*k; k=a;a=b;b=k; main() int a=3,b=6,*x’&a,*y’&b; fun(x,y); printf("%d%d",a,B) ;
A. 6 3
B. 3 6
C. 编译出错
D. 00