用java,定义一个圆柱体类cylinder,并创建相应的对象,然后计算圆柱体的底面积与体积
时间: 2023-05-25 07:03:29 浏览: 175
代码如下:
```java
public class Cylinder {
private double radius; // 圆柱底面半径
private double height; // 圆柱高度
// 构造方法
public Cylinder(double radius, double height) {
this.radius = radius;
this.height = height;
}
// 计算圆柱底面积
public double getBaseArea() {
return Math.PI * Math.pow(radius, 2);
}
// 计算圆柱体积
public double getVolume() {
return getBaseArea() * height;
}
// 测试
public static void main(String[] args) {
Cylinder cylinder = new Cylinder(2.0, 5.0);
System.out.println("圆柱体底面积为:" + cylinder.getBaseArea());
System.out.println("圆柱体体积为:" + cylinder.getVolume());
}
}
```
输出:
```
圆柱体底面积为:12.566370614359172
圆柱体体积为:62.83185307179586
```
解释:定义了一个圆柱体类,包含底面半径和高度两个属性及计算底面积和体积的方法,然后创建一个半径为2.0,高度为5.0的圆柱体对象,最后输出底面积和体积的值。
阅读全文