码迷,mamicode.com
首页 > 数据库 > 详细

迭代和JDB

时间:2019-03-28 21:50:22      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:合数   put   string   调试   ror   cannot   less   测试   mamicode   

迭代和JDB


  • 使用C(n,m)=C(n-1,m-1)+C(n-1,m)公式进行递归编程实现求组合数C(m,n)的功能。
    • 源代码
    public class Combination {
      public static void main(String args[]) {
          int c,n,m;
          n = Integer.parseInt(args[0]);
          m = Integer.parseInt(args[1]);
          c = Result(n, m);
          if (c == -1) System.out.println("Input error: m cannot be larger than n !");
          else if (c == -2)System.out.println("Input error: m and n cannot be less than zero !");
          else System.out.println(c);
      }
    
      public static int Result(int n, int m) {
          if (m == 1) return n;
          else if (m == 0 || m == n) return 1;
          else if (n < m && n>0 && m>0) return -1;
          else if (n < 0 || m < 0) return -2;
          else
              return Result(n - 1, m - 1) + Result(n - 1, m);
      }
    }
    • 测试运行截图
      • 正常情况

技术图片
- 异常情况

技术图片
- 边界情况

技术图片


  • JDB调试
    • 正常情况下用JDB调试程序c(X,2),X为学号最后一位+3

      我学号5214,即取c(7,2)调试。
    • 调试情况截图

    技术图片
    技术图片
    技术图片

迭代和JDB

标签:合数   put   string   调试   ror   cannot   less   测试   mamicode   

原文地址:https://www.cnblogs.com/fzlzc/p/10617709.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!