实现Java程序,包括两个类:圆柱类Cylinder和主类TestCylinder,求出圆柱体的侧面积、表面积和体积

 我来答
百度网友4f1df3b41
2011-05-24 · TA获得超过1913个赞
知道小有建树答主
回答量:716
采纳率:0%
帮助的人:470万
展开全部
//Cylinder类
public class Cylinder {
private static final double PI = 3.1415926;

private double height; //圆柱体的高
private double radius; //底面半径

public double getHeight() {
return height;
}

public void setHeight(double height) {
this.height = height;
}

public double getRadius() {
return radius;
}

public void setRadius(double radius) {
this.radius = radius;
}

public Cylinder() {}

public Cylinder(double height, double radius) {
this.height = height;
this.radius = radius;
}

public double getSideArea(){

return 2*PI*radius*height;
}

public double getFullArea(){
return (getSideArea()+PI*radius*radius*2);
}

public double getVolume(){
return PI*radius*radius*height;
}
}

//TestCylinder类

public class TestCylinder {
public static void main(String[] args) {
Cylinder cylinder = new Cylinder(5.5, 3.5);
System.out.println("圆柱体侧面积: "+cylinder.getSideArea());
System.out.println("圆柱体表面积: "+cylinder.getFullArea());
System.out.println("圆柱体体积: "+cylinder.getVolume());
}
}
kfjchvq
2011-05-26 · TA获得超过1964个赞
知道小有建树答主
回答量:1586
采纳率:0%
帮助的人:773万
展开全部

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
oefqabb
2011-05-24 · TA获得超过387个赞
知道答主
回答量:543
采纳率:50%
帮助的人:344万
展开全部

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式