本题背景是有3个红球,3个白球,6个黑球,随机抽8个,求有多少种方案。
#include <stdio.h>
main ()
{
int i,j,count;
puts("the result is:\n");
printf("time red ball white ball black ball\n");
count=1;
for(i=0;i<=3;i++)
for(j=0;j<=3;j++)
if((8-i-j)<=6)
printf("%3d%8d%9d%10d\n",count++,i,j,8-i-j);
return 0;
}