Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
56142 | xuxingping | 地球人口承载力估计 | C++ | 通过 | 0 MS | 248 KB | 250 | 2024-11-09 14:39:45 |
#include<bits/stdc++.h> using namespace std; int human1,human2,time1,time2; double rise; int main(){ cin>>human1>>time1>>human2>>time2; rise=(human1*time1-human2*time2)/(time1-time2); cout<<fixed<<setprecision(2)<<rise<<endl; return 0; }