I got the impression ___ she was rather serious ___ she didn’t talk much about herself.
A. which…for
B. that… for
C. why…as
D. how…as
查看答案
I suggested going to a disco, but Jennifer said she had to get up early _____.
A. tomorrow
B. next day
C. the next day
D. the tomorrow
David didn't ____ at all like his photograph on the Internet dating site.
A. grow
B. grow up
C. lookings
D. look
【单选题】对于数组int a[2][2];下列描述中正确引用数组元素的是( )
A. a[2][2]
B. a[1][0]
C. a(2,2)
D. a[1,1]
【单选题】有以下程序#include void main(){int a[5]={1,2,3,4,5}, b[5]={0,2,1,3,0}, i, s=0; for(i=0; i<5; i++) { s=s+a[b[i]]; } printf(“%d\n”, s);}程序运行后的输出结果是
A. 6
B. 10
C. 11
D. 15