解题思路:
经典递归求阶乘解法!
注意事项:
位数较多时,会出现精度不够的情况,使用 BigInteger 类进行数据处理。
参考代码:
import java.math.BigInteger; import java.util.Scanner; public class C1014 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { BigInteger rs = F(sc.nextInt()); System.out.println(rs); } sc.close(); } private static BigInteger F(int n){ if(n == 1) return BigInteger.ONE; return F(n-1).add(S(n)); } private static BigInteger S(int n){ if(n == 1) return BigInteger.ONE; return S(n-1).multiply(new BigInteger(String.valueOf(n))); } }
0.0分
0 人评分
【回文数(二)】 (C语言代码)浏览:940 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:1059 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:690 |
奖学金 (C++代码)浏览:2055 |
字符串对比 (C语言代码)浏览:1471 |
校门外的树 (C语言代码)浏览:989 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:1314 |
淘淘的名单 (C语言代码)浏览:1167 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:863 |
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:366 |