问题是年增长率是9%,求十年后与现在的增长比r是年增长率n是年数p为与现在相比的倍数#include <math.h>#include <stdio.h>int main (void){ double p,n,sum,r=9/100; sum=1+r; printf("请在下方输入年份\n"); scanf("%f",&n); p=pow (sum,n); printf("增长的百分比为:%f\n",p); return 0;}我感觉看起来没问题啊,问题答案算出来是错的
- 2 回答
- 0 关注
- 2930 浏览
添加回答
举报
0/150
提交
取消