java矩阵面积_Java基础 矩阵面积
生活随笔
收集整理的這篇文章主要介紹了
java矩阵面积_Java基础 矩阵面积
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
提供 數據結構與算法題目 的平臺是LintCode,參考鏈接是:http://www.lintcode.com/zh-cn/
問題描述:
參考代碼:
public class Rectangle {
/*
* Define two public attributes width and height of type int.
*/
// write your code here
public int width;
public int height;
/*
* Define a constructor which expects two parameters width and height here.
*/
// write your code here
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 this.width * this.height;
}
}
結果與評價:
總結
以上是生活随笔為你收集整理的java矩阵面积_Java基础 矩阵面积的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: matlab 流固耦合,详讲流固耦合
- 下一篇: mysql jdbc 单利_java单利