首页 > 编程语言 > 详细

java矩形类

时间:2019-09-18 19:36:41      阅读:111      评论:0      收藏:0      [点我收藏+]
public class Rectangle {

    private double width;
    private double length;

    public double area(){
        double s;
        s = width * length;
        return s;
    }
    public double perimeter(){
        double c;
        c = (width + length) * 2;
        return c;
    }
    public void set(double width, double length){
        this.length = length;
        this.width = width;
    }
    public void get(){
        System.out.println("area = " + area());
        System.out.println("perimeter = " + perimeter());
    }
    public static void main(String [] args){
        double x,y;
        Scanner in = new Scanner(System.in 

);
        Rectangle r = new Rectangle();
        System.out.println("input wide and length here: ");
        x = in.nextDouble();
        y = in.nextDouble();
        r.set(x,y);
        r.get();
    }
}

技术分享图片

 

java矩形类

原文:https://www.cnblogs.com/-vampire-/p/11544526.html

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