454. 矩陣面積(入門)
描述
實現一個矩陣類Rectangle
,包含如下的一些成員變數與函式:
- 兩個共有的成員變數
width
和height
分別代表寬度和高度。 - 一個建構函式,接受2個引數 width 和 height 來設定矩陣的寬度和高度。
- 一個成員函式
getArea
,返回這個矩陣的面積。
樣例
樣例1:
Java:
Rectangle rec = new Rectangle(3, 4);
rec.getArea(); // should get 12,3*4=12
Python:
rec = Rectangle(3, 4)
rec.getArea()
樣例2:
Java:
Rectangle rec = new Rectangle(4, 4);
rec.getArea(); // should get 16,4*4=16
Python:
rec = Rectangle(4, 4)
rec.getArea()
程式碼實現
public class Rectangle {
/*
* Define two public attributes width and height of type int.
*/
// write your code here
int width = 0;
int height = 0;
/*
* 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;
}
}
相關文章
- verilog實現矩陣卷積運算矩陣卷積
- 【矩陣求導】關於點乘 (哈達瑪積)的矩陣求導矩陣求導點乘
- python輸入詳解(陣列、矩陣)Python陣列矩陣
- OpenGL/OpenGL ES 入門:基礎變換 - 初識向量/矩陣矩陣
- 巨大的矩陣(矩陣加速)矩陣
- 鄰接矩陣、度矩陣矩陣
- 奇異矩陣,非奇異矩陣,偽逆矩陣矩陣
- OpenGL入門第三課--矩陣變換與座標系統矩陣
- leetcode:面試題 01.08. 零矩陣(陣列,中等)LeetCode面試題矩陣陣列
- 【機器學習】--模型評估指標之混淆矩陣,ROC曲線和AUC面積機器學習模型指標矩陣
- $Simpson$積分入門
- d3.js 入門學習記錄(九) 用佈局實現餅圖 堆疊面積圖 矩陣樹圖 思維樹圖 封閉圖JS矩陣
- 資料結構:陣列,稀疏矩陣,矩陣的壓縮。應用:矩陣的轉置,矩陣相乘資料結構陣列矩陣
- 矩陣矩陣
- 求任意矩陣的伴隨矩陣矩陣
- 形函式,等參單元,雅克比矩陣,高斯積分函式矩陣
- 卷積運算元的矩陣向量乘積表示&一維離散降質模型卷積矩陣模型
- C++之OpenCV入門到提高003:矩陣的掩膜(Mask)處理C++OpenCV矩陣
- 矩陣和陣列矩陣陣列
- 理解矩陣矩陣
- 海浪矩陣矩陣
- 矩陣相乘矩陣
- 稀疏矩陣矩陣
- 螺旋矩陣矩陣
- 矩陣乘法矩陣
- 8.6 矩陣?矩陣
- 找矩陣矩陣
- 矩陣分解矩陣
- 脈動陣列在二維矩陣乘法及卷積運算中的應用陣列矩陣卷積
- 快手矩陣管理平臺,矩陣管理有方法矩陣
- 《前端圖形學從入門到放棄》002 教練我想學矩陣前端矩陣
- 一文讀懂深度學習中的矩陣微積分深度學習矩陣
- [Python]-機器學習Python入門《Python機器學習手冊》-01-向量、矩陣和陣列Python機器學習矩陣陣列
- 機器學習中的矩陣向量求導(五) 矩陣對矩陣的求導機器學習矩陣求導
- 矩陣:如何使用矩陣操作進行 PageRank 計算?矩陣
- 演算法學習:矩陣快速冪/矩陣加速演算法矩陣
- 高斯消除矩陣矩陣
- 矩陣求導矩陣求導