参考代码:
#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 人评分
剔除相关数 (C语言代码)浏览:1058 |
C语言训练-斐波纳契数列 (C语言代码)浏览:1270 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:674 |
1011题解浏览:819 |
C二级辅导-温度转换 (C语言代码)浏览:802 |
1162答案错误,为什么浏览:700 |
小O的图案 (C语言代码)浏览:979 |
C语言程序设计教程(第三版)课后习题6.7 (C++代码)浏览:602 |
A+B for Input-Output Practice (C语言代码)浏览:489 |
时间转换 (C语言代码)浏览:855 |