#include <iostream>
using namespace std;
int main() {
  int x, a, y, b;
  cin >> x >> a >> y >> b;
  double z = (x * a * 1.0) / (a - b);
  printf("%.2f", z);
  return 0;
}

2 条评论

  • @ 2023-12-21 18:12:21

    image

    • @ 2023-12-21 12:51:22

      #include<iostream> using namespace std; int main(){ double x,a,y,b; cin>>x>>a>>y>>b; printf("%.2f",(yb-xa)/(b-a)); return 0; }

      • 1

      信息

      ID
      458
      时间
      1000ms
      内存
      256MiB
      难度
      5
      标签
      递交数
      43
      已通过
      17
      上传者