摘要: 迭代和JDB调试 1.使用C(n,m)=C(n 1,m 1)+C(n 1,m)公式进行递归编程实现求组合数C(m,n)的功能 代码展示: public class C { public static void main(String args[]) { int [] temp = new int [ 阅读全文
posted @ 2019-03-27 19:14 20175306王佳烁 阅读(165) 评论(0) 推荐(0)