天天看點

矩陣面積

上次的題目被打擊到了,做個最簡單的題目找找自信,阿Q精神。

矩陣面積
public class Rectangle {
    public Rectangle(int width, int height) {
        this.width = width;
        this.height = height;
    }
    public int getArea() {
        return  width*height;
    }
}
           
矩陣面積

繼續閱讀