题解 2771: 大象喝水

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

筛选

题解 2771: 大象喝水

摘要:解题思路:首先输入高和半径,然后求体积,再用20L除以体积。注意事项:在这里pi=3.14159。参考代码:#include <bits/stdc++.h>using namespace std;in……

2771: 大象喝水

摘要:```cpp #include #include using namespace std; int main() { int h,r; double v; ci……

编写题解 2771: 大象喝水

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double h,r,m;    cin>>h>>r……

简单又实用

摘要:参考代码:#include <iostream>#include <cmath>  // 包含cmath头文件来使用M_PI常量using namespace std;int main() {    ……

2771: 大象喝水

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double h,r,m;    cin>>h>>r……

写题解 2771: 大象喝水

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    /**    while(16534123412387……

2771: 大象喝水

摘要:解题思路:注意事项:3.14159* r * r * h是圆柱体积,20升要转化成20000毫升参考代码:#include <bits/stdc++.h>using namespace std;int……