假如我国国民生产总值的年增长率为9%,请编写一个程序计算10年后我国国民生产总值与现在相比增长多少百分比?
注释:其计算公式为
(其中r为年增长率,n为年数,p为与现在相比的倍数)
# include <stdio.h> # include <math.h> int main( ) {float p,r,n; r=0.1; n=10; p=pow(1+r,n); printf("p=%f\n",p); return 0; }
# include <stdio.h>
# include <math.h>
int main( )
{float p,r,n;
r=0.1;
n=10;
p=pow(1+r,n);
printf("p=%f\n",p);
return 0;
}
#include <stdio.h> #include <math.h> int main() { // 假如我国国民生产总值的年增长率为9%, // 请编写一个程序计算10年后我国国民生产总值与现在相比增长多少百分比? // 注释:其计算公式为p= (1+r)^n // (其中r为年增长率,n为年数,p为与现在相比的倍数) float r, n, p; r = 0.09; n = 10; p = pow(1+r,n); printf("%f",p); return 0; }
结合马男波杰克龙
# include<stdio.h> int main() { int k=10,i; float p=0.09,r=1; for (i=0;i<k;i++) r=r*(1+p); printf("The result is %f\n",p); return 0; }
这道题你会答吗?花几分钟告诉大家答案吧!
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题