华师一附中OI组
标题:
求助
[打印本页]
作者:
604王泽逸
时间:
2021-10-25 20:14
标题:
求助
问题 I: 【基础】求2+2*2+2*2*2+…+2*2*2*….*2
#include<iostream>
using namespace std;
int s,i,n,x;
int main()
{
cin>>n;
s=0,x=1,i=2;
while(x<=n)
{
s=s+i;
x++;
i=i*2;
}
cout<<s;
return 0;
}
复制代码
王泽逸
I
答案错误 AC:50%
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2