大神给我写个Java的阶乘运算吧,在线等。。。万分感谢
1个回答
展开全部
public class test {
public static void main(String[] args) {
System.out.print("1!+2!+3!+4!+.....+10!为:" + totalFactorial(10));
}
private static int totalFactorial(int n) {
int total = 0;//总和
int fac = 1;//阶乘
for (int i = 1; i <= n; i++) {
fac *= i;
total += fac;
}
return total;
}
}
public static void main(String[] args) {
System.out.print("1!+2!+3!+4!+.....+10!为:" + totalFactorial(10));
}
private static int totalFactorial(int n) {
int total = 0;//总和
int fac = 1;//阶乘
for (int i = 1; i <= n; i++) {
fac *= i;
total += fac;
}
return total;
}
}
追问
谢谢,我连Java的命名还不知道呢。。。慢慢看吧
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询