本题要求编写程序,计算sum=21+22+23+⋯+2n。可以调用pow函数求幂。
时间: 2023-06-29 10:02:46 浏览: 147
二级C程序设计题
好的,我明白了。针对你的问题,可以使用一个循环来计算 sum,即从 n+1 开始循环到 2n,每次将当前循环变量 i 的 2 次方值加入 sum 中。代码如下所示:
```
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int n = 10; // 假设 n 等于 10
double sum = 0;
for(int i=n+1; i<=2*n; i++){
sum += pow(2, i);
}
cout << "sum = " << sum << endl;
return 0;
}
```
在这个程序中,我们首先定义了 n 的值为 10,sum 的初值为 0。然后,循环变量 i 从 n+1 开始,一直循环到 2n。在每次循环中,我们使用了 pow 函数来计算 2 的 i 次方,然后将其加入 sum 中。最后,我们输出 sum 的值。运行程序,可以得到 sum 的值为 39582455.
阅读全文