4 条题解

  • 1
    @ 2025-9-17 21:28:52
    #include<iostream>
    #include<iomanip>
    using namespace std;
    int main(){
        double x,a,y,b;
        cin>>x>>a>>y>>b;
        cout<<fixed<<setprecision(2)<<(a*x-b*y)/(a-b);
        return 0;
    }
    
    

    信息

    ID
    4456
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    (无)
    递交数
    454
    已通过
    240
    上传者