3.编写一个应用程序求满足 1+2!+3!.+n!<=9876的最大整数n。 public class execise3_3 { public static void main(String[] args) int i=1,s=1,t=[填空1]; while(s[填空2]) i[填空3]; t=t*i; s=[填空4]; System.out.println([填 空5]);} } 五个空怎么填
时间: 2023-05-21 10:01:39 浏览: 118
编程实现计算:1!+2!+3!+……+N!的值,要求定义并调用函数计算N!。
5星 · 资源好评率100%
public class execise3_3 {
public static void main(String[] args) {
int i = 1, s = 1, t = 1;
while (s * t <= 9876) {
i++;
t = t * i;
s = s * (i - 1);
}
System.out.println(i - 1);
}
}
空1:t
空2:*
空3:++
空4:s
空5:i-1
阅读全文