【单选题】
This was the final word and I [] accepted it.
【单选题】
Unbelievable! I have failed my final exam for mathematics!____________
【单选题】
A: I missed yesterdays basketball final. B: [填空]
③
Remember to bring it next time.
【判断题】
A: I wish you success in the final exam. B: The same to you.
【单选题】
有以下程序,程序执行后的输出结果是( ) #include int fun(int x [ ],int n) { static int sum=0,i; for(i=0; i{ sum+=x[i]; } return sum; } void main( ) { int a[ ]={1,2,3,4,5}; int b[ ]={6,7,8,9},s=0; s=fun(a,5)+fun(b,4); printf(%d\n,s); }
【单选题】
设变量a是int型,f是float型,i是double型,则表达式5+′a′+i*f值的数据类型为( )
【单选题】
循环语句“for(int i=0; i<n; i++) cout<<i*i<<’ ’;”中循环体执行的次数为()。
【单选题】
循环语句“for(int i=0; i<n; i++) cout<<i*i<<’ ’;”中循环体执行的次数为(????)
【单选题】
以下程序的输出结果是_______? f(int b[],int m,int n) { int i,s=0; for(i=m;in;i=i+2) s=s+b[i]; return s; } int main() { int x,a[]={1,2,3,4,5,6,7,8,9}; x=f(a,3,7); printf(%d\n,x); }
【判断题】
int i,j;boolean booleanValue=(i==j);