1 条题解

  • -1
    @ 2025-3-15 11:15:31
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	float a,b,c,d;
    	cin>>c>>a>>d>>b;
    	float z=(c*a-d*b)/(a-b);
    	printf("%0.2f",z);
    	return 0;
    }
    

    牛吃草了解一下

    • 1

    信息

    ID
    572
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    递交数
    25
    已通过
    18
    上传者