[单选题]下列函数值的类型是( )。 fun(double x) { float y; y=3*x-4; return y; }A.intB.不确定C.voidD.float
[单选题]下列函数值的类型是( )。 fun(double x) { float y; y=3*x-4; return y; }A.intB.不确定C.voidD.float
[单选题]下列函数值的类型是( )。 fun(double x) { float y; y=3*x-4; return y; }A.intB.不确定C.voidD.float
[单选题]有以下函数定义:void fun(int n, double x) { …… }若以下选项中的变量都已正确定义并赋值,则对函数fun正确调用的语句是A.fun(int y,double m); B.k=fun(10,12.5); C.fun(x,n); D.void fun(n,x);
[单选题]有以下函数定义; void fun(int n,double x){......} 若以下选项中的变量都已正确定义并赋值,则对函数fun正确调用语句是______。A.fun(int y,double m);B.k=fun(10,12.5);C.fun(x,n);D.void fun(n,x);
[单选题]有以下函数定义: void fun(int n, double x) {……} 若以下选项中的变量都已正确定义并赋值,则对函数fun的正确调用语句是( )。A.fun(int y,double m);B.k=fun(10,12.5);C.fun(x,n);D.void fun(n,x);
[单选题]有以下函数定义: void fun(int n, double x) {……} 若以下选项中的变量都已正确定义并赋值,则对函数fun的正确调用语句是A.fun(int y,double m);B.k=fun(10,12.5);C.fun(x,n);D.void fun(n,x);
[单选题]有以下函数定义: void fun(int n, double x) {…} 若以下选项中的变量都已经正确定义并赋值,则对函数fun的正确调用语句是______。A.fun(int y, double m);B.k=fun(10, 12.5);C.fun(x, n);D.void fun(n, x);
[单选题]以下函数的功能是:计算a的n次方作为函数值返回。double fun(double a,int n){ int i;double s=0;for(i=
[单选题]若有以下函数首部int fun (double x[10],int *n)则下面针对此函数的函数声明语句中正确的是A.int fun(double x, int *n);B.int fun(double , int);C.int fun(double *x, int n);D.int fun(double *, int *);