Q 直接看代码吧。再用pow()函数的时候要记住头文件#include<cmath>

 

#include  <iostream>
#include <cmath>
using namespace std;
int main() {
	double sum=0;
	for(int i=1;i<=64;i++)
		sum+=pow(2,i-1);
	
	cout<<sum;
	return 0;
}

  

posted on 2017-04-28 09:11  王小东大将军  阅读(184)  评论(0编辑  收藏  举报