题解 2181: 信息学奥赛一本通T1005-地球人口承载力估计

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C++方式解题

摘要:#include#includeusing namespace std;int main(){ /* a*t+s=a*x b*t+s=b*y t……

直接解方程组

摘要:解题思路:注意事项:参考代码:x, a, y, b = map(int, input().split())m = b*y - a*xn = b- ares= m / nprint('%.2f&……