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 [args.length]; int sum; for(int i=0; i<args.length;i++) { temp[i] = Integer.parseInt(args[i]); } sum = fact(temp[0],temp[1]); if(sum == 0) System.out.println("error"); else System.out.println(sum); } public static int fact(int n , int m) { if(m==1) return n; else if( m==0 || m==n) return 1; else if(n<m || n==0) return 0; else return fact(n-1, m-1)+fact(n-1,m); } }
2.提交測試運行截圖(至少三張:正常如c(3,2)、異常如c(2, 3)、邊界狀況如c(m,m))測試
3.提交正常狀況下用JDB調試程序c(X,2)的截圖,X爲學號最後一位+3,至少四張截圖調試