假如我国国民生产总值的年增长率为7%, 计算10年后我国国民生产总值与现在相比增长多少百分比。计算公式为p = (1+r)^n,其中r为年增长率,n为年数,p为与现在相比的倍数。
#include #include int main() { float p, r, n; r = 0.07; n = 10; p = pow(1 + r, n); printf("p=%f\n", p); return 0; }
#include <stdio.h> #include<stdlib.h> #include<string.h> #include<math.h>
int main(void) { int n=10; float r=0.07,p;
p = pow((1 + r), n); printf("%d年后增长%f%%", n,(p-1)*100 ); return 0; }
#include<stdio.h>
#include <math.h>
int main()
{
float p, r, n;
r = 0.07;
n = 10;
p = pow(1 + r, n);
printf("p=%f\n", p);
return 0;
}
#include <stdio.h> /* * 假如我国国民生产总值的年增长率为7%, 计算10年后我国国民生产总值与现在相比增长多少百分比。 * 计算公式为p = (1+r)^n,其中r为年增长率,n为年数,p为与现在相比的倍数。 */ double get_gbp_up_magnification(int n) { double p = 1; for (int i = 0; i < n; ++i) { p *= 1.0 + 0.07; } return p; } int main() { double d = get_gbp_up_magnification(10); printf("%lf", d); return 0; }
#include<stdio.h> int main() { float n=1; for(int i=0;i<10;i++) { n*=(1+0.07); } printf("%f\n",n); }
int main() { double p = 1.0; int year = 10; double r = 0.07; p = pow(p + r, year); printf("十年后的增加倍数是%lf", p); }
#include<std...
用户登录可进行刷题及查看答案
#include<stdio.h> #include <math.h> int main() { float p, r, n; r = 0.07; n = 10; p = pow(1 + r, n); printf("p=%f\n", p); return 0; }
登录后提交答案