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
【单选题】若要定义一个具有5个元素的整型数组, 以下错误的定义语句是
A. int a[5]=﹛0﹜;
B. int b[]={0,0,0,0,0};
C. int c[2+3];
D. int i=5,d[i];