解题思路:
注意事项:
参考代码:
import java.math.BigInteger; import java.util.Scanner; public class C1133 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { System.out.println(F(sc.nextInt())); } 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(BigInteger.valueOf(n)); } }
0.0分
0 人评分
化学品问题 (C语言代码)浏览:1394 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:400 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:1432 |
C语言训练-阶乘和数* (C语言代码)-------- 呆板写法浏览:1397 |
WU-整除问题 (C++代码)浏览:648 |
printf基础练习2 (C语言代码)浏览:796 |
简单的a+b (C语言代码)浏览:626 |
DNA (C语言代码)浏览:798 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:497 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:631 |