jiangfuquan999的笔记 https://bbs.21ic.com/?698633 [收藏] [复制] [RSS]

日志

10发打90环的可能。。递归算法

热度 3已有 1506 次阅读2013-5-28 15:50 |个人分类:单片机|系统分类:嵌入式系统|

int f(int n, int m) 
 int fn=0,i; 
 if(m<0||m>10*n) return 0; 
 if(n==1) return 1; 
 for(i=0;i<=10;i++) 
 fn+=f(n-1,m-i); 
 return fn; 


int main() 
 int n,m; 
 printf("Please enter n and m:"); 
 scanf("%d%d",&n,&m); 
 printf("\n%d发打中%d环有%d种可能.\n",n,m,f(n,m)); 

 system("PAUSE"); 
 return 0; 
}

路过

鸡蛋

鲜花

握手

雷人

评论 (0 个评论)