1 条题解

  • 0
    @ 2024-11-16 21:59:06

    经典问题——牛吃草。

    #include<bits/stdc++.h>
    using namespace std;
    double x,a,y,b;
    int main(){
        cin>>x>>a>>y>>b;
        printf("%.2lf",(x*a-y*b)/(a-b));
    	return 0;
    }
    
    

    信息

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