C++:求解组合数

C++:求解组合数,第1张

C++:求解组合数
#include
#include
using namespace std;
typedef long long LL;
LL C(int a,int b)//求组合数
{	LL res=1;
	for(int i=a,j=1;j<=b;i--,j++)
		{		
		res=res*i/j;	}	
		return res;
} 
int main()
{	
int n,m;	
cin>>n>>m;	
cout< 

分析:

运行结果截图:

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5635969.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存