#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< 欢迎分享,转载请注明来源:内存溢出
C++:求解组合数
赞
(0)
打赏
微信扫一扫
支付宝扫一扫
windows32位搭建hive
上一篇
2022-12-16
浙江大学陈越教授数据结构PTA 题目——7-2 整型关键字的平方探测法散列
下一篇
2022-12-15
评论列表(0条)