摘要: 1 #include 2 int c(int n,int m) 3 { 4 if(m==0||n==m) 5 return 1; 6 else 7 return c(n-1,m)+c(n-1,m-1); 8 } 9 10 int main()11 {... 阅读全文
posted @ 2014-09-14 06:28 sequenceaa 阅读(218) 评论(0) 推荐(0) 编辑