首页 > 其他 > 详细

实验八

时间:2019-05-20 01:19:23      阅读:131      评论:0      收藏:0      [点我收藏+]

public class Du {
public static void main(String[] args) {
}
}
class Rectangle{
protected double length;
protected double width;
public Rectangle(double length, double width){
this.length = length;
this.width = width;
}
}
interface Volume{
public double volume();
}
class YuanZhu extends Rectangle implements Volume{//圆柱体类
private double r;
public YuanZhu(double length, double width) {
super(length, width);
this.r = length / 2 / Math.PI;
}
public double volume() {
return Math.PI * Math.pow(r, 2) * width;
}
}
class YuanZhui extends Rectangle implements Volume{//圆锥体类
private double r;
public YuanZhui(double length, double width) {
super(length, width);
this.r = length /2 / Math.PI;
}
public double volume() {
return Math.PI * Math.pow(r, 2) * width / 3;
}

心得    自己还是没有跟上进度,很难完成。

实验八

原文:https://www.cnblogs.com/Java199-zengtai/p/10891571.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!