求在线的java编程高手帮我写下下面这个程序 给我帮帮忙啊 要交了 谢谢了。。。。!

(JAVA)定义一个类,描述一个矩形,包含有长、宽两种属性,和计算面积方法。要求:编写一个类,继承自矩形类,同时该类描述长方体,具有长、宽、高属性,和计算体积的方法。编写... (JAVA)定义一个类,描述一个矩形,包含有长、宽两种属性,和计算面积方法。
要求:编写一个类,继承自矩形类,同时该类描述长方体,具有长、宽、高属性,和计算体积的方
法。
编写一个测试类,对以上两个类进行测试,创建一个长方体,定义其长、宽、高,输出其底 面积和体积。
展开
 我来答
wangxuan1102
2011-03-07 · TA获得超过532个赞
知道小有建树答主
回答量:279
采纳率:0%
帮助的人:301万
展开全部
=我给你写一个。从上往下类依次为:
1.描述一个矩形,包含有长、宽两种属性,和计算面积方法
public class Rectangle {
float width, height;

public float getArea() {
return width * height;
}

/**
* 改变矩形的大小
*
* @param w
* 宽度
* @param h
* 高度
*/
public void resize(float w, float h) {
width = w;
height = h;
}
}
2.继承自矩形类,同时该类描述长方体,具有长、宽、高属性,和计算体积的方

public class RectangleService extends Rectangle {
float width, height, gao;
Rectangle rectangle;

public void resize(float w, float h) {
// TODO Auto-generated method stub
rectangle.width = w;
rectangle.height = h;
}

public float getVolume() {
return rectangle.getArea() * gao;
}

/**
* @return the width
*/
public float getWidth() {
return width;
}

/**
* @param width
* the width to set
*/
public void setWidth(float width) {
this.width = width;
}

/**
* @return the height
*/
public float getHeight() {
return height;
}

/**
* @param height
* the height to set
*/
public void setHeight(float height) {
this.height = height;
}

/**
* @return the gao
*/
public float getGao() {
return gao;
}

/**
* @param gao
* the gao to set
*/
public void setGao(float gao) {
this.gao = gao;
}

/**
* @return the rectangle
*/
public Rectangle getRectangle() {
return rectangle;
}

/**
* @param rectangle
* the rectangle to set
*/
public void setRectangle(Rectangle rectangle) {
this.rectangle = rectangle;
}

}
3.测试类
public class Test {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Rectangle r1 = new Rectangle();
r1.resize(4.0F, 3.0F);
RectangleService r2 = new RectangleService();
r2.setGao(2.0F);
r2.setRectangle(r1);
System.out.println("矩形1的面积:" + r1.getArea());
System.out.println("矩形1的体积:" + r2.getVolume());
}

}
追问
谢谢 运行结果有吗?
追答
有结果的的,第三个测试类Test ,里面调用到的类有Rectangle和RectangleService,Test 类中已经声明了,可以直接运行的。那个里面有main函数的。
运行结果:
矩形1的面积:12.0
矩形1的体积:24.0
flyingFish211
2011-03-07 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
public class Test{
public static void main(String args[]){

Rectangle r = new Rectangle(1, 2);
System.out.println(r.area());

Cuboid c = new Cuboid(1, 2, 3);
System.out.println(c.area());
System.out.println(c.volum());
}
}

class Rectangle {//矩形
protected double width;
protected double lng;

public double area(){
return lng * width;
}

public Rectangle(double lng, double width){
this.width = width;
this.lng = lng;
}
}

class Cuboid extends Rectangle{//长方体
private double height;

public Cuboid(double lng, double width, double height) {
super(lng, width);
this.height = height;
}

public double area(){//表面积
return (width * lng + width * height + lng * height)*2;
}

public double volum(){//体积
return super.width * super.lng * height;
}
}
-------------
2.0
22.0
6.0
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
冷露青霜
2011-03-07 · 超过16用户采纳过TA的回答
知道答主
回答量:40
采纳率:0%
帮助的人:25.8万
展开全部
打酱油。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式