您的位置:首页 > 编程语言 > Python开发

【LintCode 入门】454. 矩阵面积

2018-01-15 13:37 513 查看
1.问题描述:

实现一个矩阵类
Rectangle
,包含如下的一些成员变量与函数:
两个共有的成员变量 
width
 和 
height
 分别代表宽度和高度。
一个构造函数,接受2个参数 width 和 height 来设定矩阵的宽度和高度。
一个成员函数 
getArea
,返回这个矩阵的面积。

2.代码:

class Rectangle:

'''
* Define a constructor which expects two parameters width and height here.
'''
# write your code here
def __init__(self,width,height):
self.width=width
self.height=height
'''
* Define a public method `getArea` which can calculate the area of the
* rectangle and return.
'''
# write your code here
def getArea(self):
area=self.width*self.height
return area
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  LintCode Python 函数 class