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;
    }
    
    
    • 1
      @ 2025-4-1 18:50:52
      #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;
      }
      
      
      
      • 0
        @ 2025-10-26 10:32:24

        #include #include using namespace std; int main(){ double x,a,y,b; cin>>x>>a>>y>>b; cout<<fixed<<setprecision(2)<<(ax-by)/(a-b); return 0; }

        • 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;
          }
          
          
          • 1

          信息

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