解题思路:
注意事项:
参考代码:
#include "stdafx.h"
int main(int argc, char* argv[])
{
int n,a=2,sum=0,product;
product=a;
printf("enter the number\n");
scanf("%d",&n);
while(n--)
{
sum+=product;//累加
product*=2;//累乘
}
printf("a=%d, sum=%d\n",a,sum);
getchar();
getchar();
return 0;
}
0.0分
0 人评分