码迷,mamicode.com
首页 > 其他好文 > 详细

矩形面积(入门)

时间:2017-12-21 11:56:26      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:get   eth   mes   size   面积   efi   cto   turn   const   

  这道题主要考察的是面对对象的知识。

  

 Java:

public class Rectangle {
    /*
     * Define two public attributes width and height of type int.
     */
    // write your code here
    private Integer width;
   
    private Integer height;
    /*
     * Define a constructor which expects two parameters width and height here.
     */
    // write your code here
    public Rectangle(int width,int height){
        this.width = width;
        this.height = height;
    }
   
    /*
     * Define a public method `getArea` which can calculate the area of the
     * rectangle and return.
     */
    // write your code here
    public int getArea(){
        return width * height;
    }
}

 

  python:

class Rectangle:

     def __init__(self,width,height)://注意self 还有__init__名字

   self.width = width

        self.height = height   

     def getArea(self):

        return self.width * self.height

 

矩形面积(入门)

标签:get   eth   mes   size   面积   efi   cto   turn   const   

原文地址:http://www.cnblogs.com/KanHin/p/8078502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!