以下正确的定义函数首部的形式是( )。
A: float func(int n;float x)
B: float func(int n,float x);
C: float func(int n;float x);
D: float func(int n,float x)
A: float func(int n;float x)
B: float func(int n,float x);
C: float func(int n;float x);
D: float func(int n,float x)
举一反三
- 下列正确的函数定义形式是( )。 A: float func(int x,int y) B: float func(int x;int y) C: float func(int x,int y); D: float func(int x, y)
- 下列函数定义中正确的函数头是________。 A: float func(int x, int y) B: float func(int x; int y) C: func(int x, int y):float D: float func(int x, y)
- 若以下选项中的变量都已正确定义并赋值,有以下的函数定义,则对函数func()的调用语句正确的是( )。void func(int x,float y){ ……} A: func(int n, float x); B: k=func(10,12.3); C: void func(n,x); D: func(n,x);
- 有以下函数定义中:void func(int x,float y) { ...... }若以下选项中的变量都已正确定义并赋值,则对函数func()的调用语句正确的是( )。 A: func(int n, flaot x); B: k=func(10,12.3); C: void func(n,x); D: func(n,x);
- 编写“判断一个正整数是不是素数”的函数通常写作: ________ {... ...} A: float func(int x) B: double func(int x) C: ool func(int x) D: void func(int x)