🔢 排列组合计算器

阶乘 / 排列 / 组合 · BigInt · 纯本地

P(n,k)=n!/(n-k)! 为排列数;C(n,k)=n!/[k!(n-k)!] 为组合数。使用 BigInt 精确计算,支持较大的 n(结果极大时以科学计数法近似显示)。

就绪