首页 > 代码库 > 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基础 矩阵面积
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。