import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner (System.in); int n=sc.nextInt(); BigInteger cnt=new BigInteger("0"); BigInteger two=new BigInteger("2"); for (int i =1; i <=n; i++) { cnt=cnt.multiply(two).add(two); } System.out.println(cnt); } }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1045 |
母牛的故事 (C语言代码)浏览:1409 |
C语言训练-排序问题<2> (C++代码)浏览:935 |
输出正反三角形 (C语言代码)浏览:859 |
A+B for Input-Output Practice (III) (C语言代码)浏览:592 |
简单的a+b (C语言代码)浏览:626 |
简单的a+b (C语言代码)浏览:457 |
C语言程序设计教程(第三版)课后习题5.8 (C语言代码)浏览:1323 |
1048题解(读入回车问题)浏览:628 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:331 |