制作“脆皮鸡”这道菜肴,必须选用()。
A.仔鸡
B.老鸡
C.母鸡
D.童鸡
参考答案:A
液位测量方法有()、静压式、浮力式、电磁式。
编写函数fun(),它的功能是;根据以下公式求p的值,结果由函数值带回。m与n为两个正数且要求m>n。P=m!/n!(m-n)!),例如:m=12,n=8时,运行结果为495.000000。 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。 试题程序: #include <conio.h> #include <stdio.h> float fun (int m, int n) { } main() {clrscr() ;printf ("p=%f\n", fun (12,8) ) ; }