【单选题】I took ______ of the opportunity to tell him what I thought.
【单选题】I ______ music that I can dance to ______ the one that I can sing along with. [ ]
【简答题】机油消耗超过( ) 时,即为机油消耗异常。
【单选题】有以下程序 main() { int a[3][3],*p,i; p=&a[0][0]; for(j=0;i<9;i++)p[i]=i; for(i=0;i<3;i++)printf('%d',a[1][i]); } 程序运行后的输出结果是
【单选题】程序运行后的输出结果是() #include int main() { int i; for(i=0;i<3;i++) switch(i) { case 0: printf('%d',i); case 2: printf('%d',i); default: printf('%d',i); } return 0; }
【简答题】以下程序的辅出结果是【 】。 void fun(int s[]) { int i; for(i=0;i<10;i++)printf('%d',s[i]); printf('/n/n'); } main() { int a[3][4]={{99,2},{3,4,5},{6,7,8}}; fun(a[0]); }