题解 1111: Cylinder

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

筛选

数学思路来解这一道题的

摘要:解题思路:注意事项:参考代码:import mathwhile True:    w, h = map(int, input().split())    if w==0 or h==0:       ……

Cylinder(C++代码)

摘要:解题思路:注意事项:1.double类型                2.w>0参考代码:#include <iostream>#define PI 3.141592653589793238#inc……

Cylinder (C语言代码)

摘要:解题思路:注意事项:参考代码:import java.text.DecimalFormat; import java.util.Scanner; public class Main {   ……

Cylinder (Java代码)

摘要:解题思路:    一楼的思路无敌,    我先是自己写,然后测试没问题,提交就错。没办法,然后复制了 一楼的代码改成 java,还是错。    最后发现,是保留三位小数的问题。我自己写了个保留三位小数……

Cylinder题解,简单清晰

摘要:解题思路:注意事项:参考代码:from math import *w,h=map(float,input().split())while w:    v=[]    r=h/(pi+1)/2    i……

Cylinder (C++代码)principle 's c++

摘要:解题思路:前面最高赞的那个兄弟是我见过最简单的思路不在这里复述,以表尊重但是有一点一定要注意定义π的时候一定能要足够精确,如果定义了是3.14159是过不了的目前试过最少也要达到3.141592653……

Cylinder (C语言代码)

摘要:参考代码:#include<iostream>#include<stdio.h>#define PI 3.1415926535898using namespace std;int main(){ do……
优质题解

Cylinder (C语言描述+详细分析)

摘要:解题思路:注意事项:一定要注意,用户输出的不一定是整数,有可能是小数,所以w和h要用double型,如果用int型提交了之后会是答案错误。参考代码:#include <stdio.h> #defin……

15行+图解公式法 完成 Cylinder

摘要:解题思路:图片引用自kevin的文章根据上图得出的公式求解。注意事项:1.需要自定义 PI的值,或使用acos(-1) 来求(会增加 时间和空间 的占用)。PI 可通过 printf("%.15f",……