A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.util.Scanner;
class Demo_Rectangle {
        public static void main(String[] args) {
                Scanner sr = new Scanner(System.in);
                System.out.println("请输入长方形的高: ");
                int high = sr.nextInt();
                System.out.println("请输入长方形的宽:");
                int width = sr.nextInt();

                Rectangle r = new Rectangle(high,width);
                r.show();
        }
}

class Rectangle {
        private int high;
        private int width;
        public Rectangle(){}
        public Rectangle(int high, int width){
                this.high = high;
                this.width = width;
        }
        public void setHigh(int high){
                this.high = high;
        }
        public int getHigh(){
                return high;
        }
        public void setWidth(int width){
                this.width = width;
        }
        public int getWidth(){
                return width;
        }

        public int getLength(){
                return (width+high)*2;
        }
        public int getArea(){
                return width*high;
        }

        public void show(){
                System.out.println("周长为: " + getLength());
                System.out.println("面积是: " + getArea());
        }

}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马