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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.util.Scanner;

public class Test_Rectangle {

        /**
         * @param args
         */
        public static void main(String[] args) {
                Rectangle r = new Rectangle();
                Scanner sc = new Scanner(System.in);
                System.out.println("请输入长方形的高:");
                r.setHigh(sc.nextInt());
                System.out.println("请输入长方形的宽:");
                r.setWidth(sc.nextInt());
                System.out.print("长方形的面积是:");
                System.out.println(r.getArea());
                System.out.println("长方形周长是:" + r.getPerimeter());
        }

}




public class Rectangle {
        private int width;
        private int high;
        public int getWidth() {
                return width;
        }
        public void setWidth(int width) {
                if(width > 0 ){
                        this.width = width;
                }
        }
        public int getHigh() {
                return high;
        }
        public void setHigh(int high) {
                if(high > 0){
                        this.high = high;
                }
        }
       
       
        public int getArea(){
                return width*high;
        }
       
        public int getPerimeter(){
                int perimeter = (high + width) * 2;
                return perimeter;
        }
}

评分

参与人数 2黑马币 +9 收起 理由
111111111111 + 5 很给力!
frank1987 + 4 赞一个!

查看全部评分

6 个回复

倒序浏览
不错  不错  赞一个!!!
回复 使用道具 举报
哈哈,一个班的吧,
回复 使用道具 举报
顶贴!!!祝楼主好好学习天天向上!!!
回复 使用道具 举报
写的不错
回复 使用道具 举报
捧场,支持一下
回复 使用道具 举报
刚刚看过。。。。。。。。。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马