若有定义doublex[3][5];则表达式x[0]的类型为()。 A: double B: double* C: double** D: double(*)[5]
若有定义doublex[3][5];则表达式x[0]的类型为()。 A: double B: double* C: double** D: double(*)[5]
{ 以下函数的功能是:求x的y次方,[ ]应填: double fun( double x, int y) { int i; double z; for(i=1, z=x;[ ] ); return z;
{ 以下函数的功能是:求x的y次方,[ ]应填: double fun( double x, int y) { int i; double z; for(i=1, z=x;[ ] ); return z;
在Java中,以下定义数组的语句正确的是()。A.int t[10]=newint[];B.char[]a=”hello”;C.String[]s=newString[10];D.double[]d[]=newdouble[4][];
在Java中,以下定义数组的语句正确的是()。A.int t[10]=newint[];B.char[]a=”hello”;C.String[]s=newString[10];D.double[]d[]=newdouble[4][];
The keyword "unsigned" can modify the keyword [ ] A: signed B: long double C: long D: float
The keyword "unsigned" can modify the keyword [ ] A: signed B: long double C: long D: float
运算符[ ] 内的数据类型只能是( )。 A: int B: float C: double D: char
运算符[ ] 内的数据类型只能是( )。 A: int B: float C: double D: char
有以下程序#include [stdio.h]int fun1(double a){ return a*=a; }int fun2(double x,double y){ double a=0,b=0;a=fun1(x);b=fun1(y); return(int)(a+b);}int main(){double w;w=fun2(1.1,2.0); return 0; }程序执行后变量w中的值是( ). A: 5 B: 5.21 C: 0 D: 10.21
有以下程序#include [stdio.h]int fun1(double a){ return a*=a; }int fun2(double x,double y){ double a=0,b=0;a=fun1(x);b=fun1(y); return(int)(a+b);}int main(){double w;w=fun2(1.1,2.0); return 0; }程序执行后变量w中的值是( ). A: 5 B: 5.21 C: 0 D: 10.21
若有以下定义: double a[3][5];,则数组a占用字节数为( )字节。
若有以下定义: double a[3][5];,则数组a占用字节数为( )字节。
中国大学MOOC: Assuming the definition: double x[3][5]; the upper limit of the column index is 。
中国大学MOOC: Assuming the definition: double x[3][5]; the upper limit of the column index is 。
下面函数定义中正确的是 。 A: double fun(double f1, double f2){ } B: double fun(double f1; double f2){ } C: double fun(double f1, double f2); { } D: double fun(double f1, f2){ }
下面函数定义中正确的是 。 A: double fun(double f1, double f2){ } B: double fun(double f1; double f2){ } C: double fun(double f1, double f2); { } D: double fun(double f1, f2){ }
以下函数定义中正确的是()。 A: double fun(double x,double y){} B: double fun(double x;double Y){} C: double fun(double x,double Y);{} D: double fun(double X,Y){}
以下函数定义中正确的是()。 A: double fun(double x,double y){} B: double fun(double x;double Y){} C: double fun(double x,double Y);{} D: double fun(double X,Y){}