import org.junit.Test;
public class Factorial {
@Test
public void qiuhe() {
//下面三行可以根据不同需求改造成自己需要的,然后计算。
String str = "1!+2!+3!+4!+5!+6!+7!+8!+9!+10!";
str=str.replace("+","");
String[] array=str.split("!");
long sum= 0;
for (int i = 0; i
}
System.out.println(sum);
}
// factorial 英文翻译 阶乘
public long factorial(int number) {
long result = 1;
for (int i = 2; i <= number; i++) {
result *= i;
}
System.out.println(number+"的阶乘是:"+result);
return result;
}
}