java创建一个矩形类,属性包括原点坐标(x,y),长度和宽度

构造函数:直接构造原点坐标、长度、宽度方法:求矩形的面积编程实现:构造两个矩形:1。原点在(0.10),长度为10,宽度为20求它的面积2。原点在(20.10),长度为1... 构造函数:直接构造原点坐标、长度、宽度
方法:求矩形的面积
编程实现:
构造两个矩形:1。原点在(0.10),长度为10,宽度为20 求它的面积
2。原点在(20.10),长度为10,宽度为20 求它的面积
展开
 我来答
samismiling
2017-06-09 · 知道合伙人软件行家
samismiling
知道合伙人软件行家
采纳数:1340 获赞数:5604

向TA提问 私信TA
展开全部
import java.util. * ;
public class Rectangle {
    private int x; // 原点横坐标
    private int y; // 纵坐标
    private int length; //定义长变量
    private int width; // 宽变量
    public Rectangle(int x, int y, int length, int width) {
        this.x = x;
        this.y = y;
        this.length = length;
        this.width = width;
    }
    public int getArea() { //求面积方法
        return length * width;
    } 
    public static void main(String[] args) {
        System.out.println("矩形0,10的面积:" + new Rectangle(0, 10, 10, 20).getArea());
        System.out.println("矩形20,10的面积为:" + new Rectangle(20, 10, 10, 20).getArea());
    }
}
优质内容提供者andy
2017-06-09 · TA获得超过1561个赞
知道大有可为答主
回答量:2551
采纳率:72%
帮助的人:760万
展开全部
package BaseExec;

public class JudgeRec {

public static void main(String[] args) {
// TODO Auto-generated method stub
Rectangle r1 = new Rectangle(0,10,10,20);
Rectangle r2 = new Rectangle(20,10,10,20);
r1.showArea();
r2.showArea();
}

}

class Rectangle{
private double x;
private double y;

private double length;
private double width;

public Rectangle(double x, double y,double length, double width){
this.x = x;
this.y = y;
this.length = length;
this.width = width;
}

public void showArea(){
System.out.println("面积是" + width * length);
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
子弹非弹子575
2017-06-09 · TA获得超过392个赞
知道小有建树答主
回答量:450
采纳率:20%
帮助的人:186万
展开全部
public class Rectangle {
int x;
int y;
int length;
int width;

public Rectangle(int x, int y, int length, int width) {
this.x = x;
this.y = y;
this.length = length;
this.width = width;
}
public void getArea(){
System.out.println(length*width);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式