摘要:
这里有四个关于计算阶乘的,难度依次提升,全部通过测试。这应该是基本代码了,与之共勉。这是利用简单的循环相乘制造的阶乘。public class Factorial { public static int factorial(int x) { if (x < 0) { throw new IllegalArgumentException("x must be>=0"); } int fact = 1; for (int i = 2; i <= x; i++) { fact *= i; } return fact; } public static void m 阅读全文