1个回答
展开全部
public class Test {
public static void main(String[] args) {
double r = 2;
double h = 5;
double volume = Cylinder.cubage(r, h);
System.out.println("Volumen is: " + volume);
}
}
class Circle {//圆
private double r;
public Circle(double radius) {
this.r = radius;
}
public double area() {
return Math.PI * Math.pow(r, 2);
}
}
class Cylinder {//圆柱体
public static double cubage(double r, double h) {//求体积
Circle baseCircle = new Circle(r);//底面圆
return baseCircle.area() * h;
}
}
public static void main(String[] args) {
double r = 2;
double h = 5;
double volume = Cylinder.cubage(r, h);
System.out.println("Volumen is: " + volume);
}
}
class Circle {//圆
private double r;
public Circle(double radius) {
this.r = radius;
}
public double area() {
return Math.PI * Math.pow(r, 2);
}
}
class Cylinder {//圆柱体
public static double cubage(double r, double h) {//求体积
Circle baseCircle = new Circle(r);//底面圆
return baseCircle.area() * h;
}
}
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询