能告诉具体思路吗?
核心部分
float x,y; x=sqrt(5490.0/3830)-1; y=5490*(1+x); printf("%.2f",y);
拿计算器算,打表输出
float a,b; a=sqrt(5490.00/3830)-1; b=5490*(1+a); printf("%.2f",b);
核心代码
要用#include<cmath>
1