解题思路:
注意事项:
参考代码:
import java.math.BigInteger; import java.util.*; public class Main { public static BigInteger f(int n) { if(n==0) return BigInteger.ZERO; if(n==1) return BigInteger.ONE; else return BigInteger.valueOf(2).multiply(f(n-1)); } public static void main(String[] args) { BigInteger BigInt=BigInteger.valueOf(0); for(int i=1;i<=64;i++) { BigInt=BigInt.add(Main.f(i)); } System.out.println(BigInt); } }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:1067 |
C语言训练-字符串正反连接 (C语言代码)浏览:664 |
C语言训练-大、小写问题 (C语言代码)浏览:649 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:1482 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:583 |
母牛的故事 (C语言代码)浏览:1045 |
剪刀石头布 (C语言代码)浏览:1519 |
前10名 (C语言代码)浏览:773 |
复数求和 (C语言代码)浏览:994 |
C语言训练-8除不尽的数 (C语言代码)浏览:1469 |