C语言程序设计 五种水果 任选三种不同的组成果盘 共有多少种选择方法

C语言程序设计 五种水果 任选三种不同的组成果盘 共有多少种选择方法,第1张

#include <stdio.h>

#include <stdlib.h>

int Combination(int sumKindsNum,int selectKindsNum)

int main(int argc, char *argv[])

{

printf("%d\n",Combination(5,4))

system("PAUSE")

return 0

}

int Combination(int sumKindsNum,int selectKindsNum)

{

int tempVal1 = 1

int tempVal2 = 1

int i = sumKindsNum - selectKindsNum + 1

int j = 1

if ( sumKindsNum <selectKindsNum )

{

return 0

}

for( ii <sumKindsNum + 1i++ )

{

tempVal1 *= i

}

for ( jj <selectKindsNum + 1j++ )

{

tempVal2 *= j

}

return tempVal1 / tempVal2

}


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

原文地址: http://outofmemory.cn/yw/12105680.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存