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