Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
7223 luchenyuan 地球人口承载力估计 C++ 通过 0 MS 248 KB 202 2023-02-02 07:42:47

Tests(1/1):


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


测评信息: