Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7867 | OscarWLY | 地球人口承载力估计 | C++ | 通过 | 0 MS | 248 KB | 198 | 2023-02-08 13:12:47 |
#include<bits/stdc++.h> using namespace std; int main() { double a,b,c,d; cin>>a>>b>>c>>d; double ans=(c*d-a*b)/(d-b); cout<<setprecision(2)<<setiosflags(ios::fixed)<<ans; return 0; }