0
0
已采纳
翟谦瑞
新手守护
新手守护
假设2014年的工资为x,2016年的工资为y,那么:
增长率为 sprt(y.0/x)-1,设它为a
即2017年的工资为5490*(1+a)
核心程序为:
float a,b;
a=sqrt(5490.00/3830)-1;
b=5490*(1+a);
printf("%.2f",b);
return 0;
别忘了加
#include <cstdio>
和
#include <cmath>
欧☺️
0
0
0
0