问一个java编程问题:定义一个矩形类(Rectangle) 已知对角线的坐标求面积和周长

对角线的坐标是未知数呢?... 对角线的坐标是未知数呢? 展开
 我来答
源念云F
2010-04-29 · TA获得超过685个赞
知道小有建树答主
回答量:298
采纳率:0%
帮助的人:295万
展开全部
public class Rectangle{
private int left,top,right,bottom;
public Rectangle(int left,int top,int right,int bottom){
this.left=left;
this.top=top;
this.right=right;
this.bottom=bottom;
}
public int getWidth(){
return Math.abs(right-left);
}
public int getHeight(){
return Math.abs(top-bottom);
}
public int getPerimeter(){
return (getWidth()+getHeight())*2;
}
public int getArea(){
return getWidth()*getHeight();
}
public static void main(String []args){
Rectangle rect=new Rectangle(0,0,50,60);
System.out.println("Perimeter:"+rect.getPerimeter());
System.out.println("Area:"+rect.getArea());
}
}
chbhhz
2010-04-29 · 超过13用户采纳过TA的回答
知道答主
回答量:52
采纳率:0%
帮助的人:39.5万
展开全部
不给参考坐标系,无解
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式