问题标题: 1254,哪里有错?

1
1
已解决
王梦飞
王梦飞
新手守护
新手守护
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main ()
{
    double a,b;
    b=(5490-3830)/2/3830;
    a=5490*(1+b);
    printf("%.2f",a);
    return 0;
}

 


0
已采纳
周天睿
周天睿
初级光能
初级光能

定义部分

a=sqrt(5490/3830.0);
    b=a*5490;

0
朱宗晔
朱宗晔
初级光能
初级光能

核心部分 

float x,y;
    x=sqrt(5490.0/3830)-1;
    y=5490*(1+x);
    printf("%.2f",y);

 

0
刘凯南
刘凯南
高级守护
高级守护
    double x;
    x=sqrt(5490/3830.0)-1;
    printf("%.2f",5490.0*(1+x));

 

0
我要回答