coding:utf-8 -*- # 用python實現排列組合C(n,m) = n!/m!*(n-m)! def get_value(n): if n==1: return n else: return n * get_value(n-1) def ...
確定! 回上一頁