一只猪


私信TA

用户名:TuT99

访问量:11752

签 名:

拥有良好的积累,并且一直在路上,我相信自己有无限的可能

等  级
排  名 70
经  验 10251
参赛次数 6
文章发表 68
年  龄 21
在职情况 学生
学  校 哔哩哔哩大学
专  业 计算机科学与技术

  自我简介:

参考代码:

#include <iostream>

#include <cmath>  // 包含cmath头文件来使用M_PI常量

using namespace std;

int main() {

    int h, r;

    cin >> h >> r;

    double volume_per_bucket = M_PI * pow(r, 2) * h;  // 小圆桶的容积

    int total_buckets = ceil(20000.0 / volume_per_bucket);  // 所需桶数,向上取整


    cout << total_buckets << endl;


    return 0;

}


 

0.0分

3 人评分

  评论区

  • «
  • »