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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class Homework3_Rectangle {
        public static void main(String[] args) {
               
                Rectangle r1 = new Rectangle();
                r1.setWidth(20);
                r1.setHigh(10);
                int zhou = r1.getZhou();
                double mian = r1.getMian();
       
                System.out.println(zhou + " " + mian);
               
                //System.out.println("周长是:" +r1.getZhou()  + "面积是:" +r1.getMian() );
               
                System.out.println(r1.getZhou());
                System.out.println(r1.getMian());
        }

}

class Rectangle {
        private int width;
        private int high;


        public Rectangle() {}                //无参构造

        public Rectangle(int width,int high) {
                this.width = width;
                this.high = high;
        }

        public void setWidth(int width) {
                this.width = width;
        }

        public int getWidth() {
                return width;
        }

        public void setHigh(int high) {
                this.high = high;
        }

        public int getHigh() {
                return high;
        }

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

        public double getMian() {
                return width * high;
        }
}       


7 个回复

倒序浏览
..................................
回复 使用道具 举报
可以啊  为你点赞
回复 使用道具 举报
HelloKHM 发表于 2016-7-29 00:22
..................................

什么意思?
回复 使用道具 举报
花陌相惜 发表于 2016-7-29 00:37
可以啊  为你点赞

好的,谢谢啊
回复 使用道具 举报
这个可以,很基础
回复 使用道具 举报
哇  ,这是什么,一个都看不懂.....
回复 使用道具 举报
walkk 中级黑马 2016-7-29 21:16:33
8#
顶楼上,我也看不懂 我差不多已经是废人了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马