C語言程式設計>第八週 ⑦ 編寫函式fun,它的功能是:根據以下公式求的值,結果由函式值帶回。m與n為兩個正整數且要求m>n。

朽木自雕i發表於2020-12-30

例題:編寫函式fun,它的功能是:根據以下公式求的值,結果由函式值帶回。m與n為兩個正整數且要求m>n。
在這裡插入圖片描述

例如:m=10,n=5時,執行結果為252.000000。
請勿改動主函式main與其它函式中的任何內容,僅在函式fun的花括號中填入所編寫的若干語句。

程式碼如下:

#include<conio.h>
#include<stdio.h>
float fun(int m,int n)
{
	float result,temp=1.0;
	int i;
	for(i=1;i<=m;i++)
		temp=temp*i;
	result=temp;
	for(temp=1.0,i=1;i<=n;i++)
		temp=temp*i;
	result=result/temp;
	for(temp=1.0,i=1;i<=m-n;i++)
		temp=temp*i;
	result=result/temp;
	return result;
}
main()
{
	FILE*out;
	printf("Result=%f\n",fun(10,5));
	out=fopen("outfile.dat","w");
	fprintf(out,"%f",fun(12,6));
	fclose(out);
}

輸出執行視窗如下:
在這裡插入圖片描述

越努力越幸運!
加油,奧力給!!!

相關文章