【Java】圆柱体类

编写应用程序计算圆柱体的体积,该程序包含两个类,一个圆柱体类和一个包含主类的测试类,圆柱体类包含变量半径、高、体积,还具有从键盘输入得到半径和高以及计算体积的方法。

import java.util.Scanner;
class Cylinder{
    private double radius;
    private double height;
    private double volunm;
    public Cylinder(double radius, double height){
        this.radius = radius;
        this.height = height;
    }
    public double getVolume() {
        return Math.PI * radius * radius * height;
    }
}
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter the radius of the cylinder: ");
        double radius = sc.nextDouble();
        System.out.println("Enter the height of the cylinder: ");
        double height = sc.nextDouble();
        Cylinder cylinder = new Cylinder(radius, height);
        double volume = cylinder.getVolume();
        System.out.println("The volume of the cylinder is " + volume);
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值