2 条题解

  • 0
    @ 2023-10-24 21:27:26

    设每1亿人每年消耗资源为1,

    110亿人90年消耗资源为:110 × 90 = 9900

    90亿人210年消耗资源为:90 × 210 = 18900

    每年新生资源:(18900 - 9900) / (210 - 90) = 75

    为使人类能够不断繁衍,那么每年消耗的资源数量不能超过再生的资源数量,所以地球最多能养活75亿人。

    • 0
      @ 2023-10-24 21:24:24

      ##【源代码】(C语言版)

      #include <stdio.h>
      
      int main(){
          int a, b, c, d;
      
          scanf("%d %d %d %d", &a, &b ,&c, &d);
          printf("%.2f", (c * d - a * b) * 1.0 / (d - b));
      
          return 0;
      }
      

      ##【源代码】(C++版)

      #include<iostream>
      #include<iomanip>
      
      using namespace std;
      
      int main()
      {
          int x, y, a, b;
          double z;
      
          cin >> x >> a >> y >> b;
          z = (y * b - x * a) / (b - a);//计算最多人数
          cout << fixed << setprecision(2);//保留两位小数
          cout << z << endl;
          return 0;
      }
      

      解题提示:

      避免资源枯竭的条件就是现有资源不减少。

      • 1

      信息

      ID
      580
      时间
      1000ms
      内存
      128MiB
      难度
      9
      标签
      (无)
      递交数
      9
      已通过
      6
      上传者