Java输出1+2¹+2²+2³+…+2ⁿ的值
时间: 2023-05-14 20:05:40 浏览: 163
可以使用循环来输出这些值,代码如下:
```
public class Main {
public static void main(String[] args) {
int n = 10;
for (int i = 0; i <= n; i++) {
System.out.print((int) Math.pow(2, i) + " ");
}
}
}
```
输出结果为:1 2 4 8 16 32 64 128 256 512 1024
相关问题
Java输出1+2¹+2²+2³+…+2ⁿ
可以使用循环来实现这个输出,代码如下:
```
public class Main {
public static void main(String[] args) {
int n = 10; // 输出2的幂次方的个数
for (int i = 0; i <= n; i++) {
System.out.print((int) Math.pow(2, i) + " ");
}
}
}
```
输出结果为:1 2 4 8 16 32 64 128 256 512 1024
java计算1+2¹+2²+2³+…+2ⁿ的值
可以使用以下代码来计算:
```
public static void main(String[] args) {
int n = 10;
int sum = 0;
for (int i = 0; i <= n; i++) {
sum += Math.pow(2, i);
}
System.out.println(sum);
}
```
输出结果为:2047
阅读全文