问题标题: 酷町堂:1254

0
0
已解决
王永祺
王永祺
初级光能
初级光能

1254   工资问题

 

Compile Error:0分

 

 

 

我的提交(cpp):

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    float x;
    float y;
    x=sqrt(5490.0/3830.0)-1;
    y=5490*(1+x);
    printf("%.2f",y);
    return 0;
}

 


0
已采纳
项依凡
项依凡
初级光能
初级光能
i:=5490/3830;
    j:=sqrt(i);
    n:=j-1;
    m:=5490*(1+n);
    write(m:0:2);

一段pascal程序从给你,是我前几年写的,望你会用

0
0
0
0
尹宗鑫
尹宗鑫
新手守护
新手守护

浮点 a=3830,b=5490;
浮点 bf=0,c2017;
bf=sqrt(b/a)-1;
c2017=(1+bf)*5490;
c2017保留2位小数 

0
0
0
我要回答