2020-4-19
Posted wzm7282
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2020-4-19相关的知识,希望对你有一定的参考价值。
package hm_4_19; public class Rectangle { public int length ; public int width; public Rectangle(int length, int width) { super(); this.length = length; this.width = width; } public int getArea() { // 面积 int area = length*width; return area; } public int getPer() { // 周长 int per = (length+width)*2; return per; } public void showAll() { // 所有属性 System.out.println("长"+length+"宽"+width+"面积"+getArea()+"周长"+getPer()); } public static void main(String[] args) { Rectangle r = new Rectangle(20, 30); r.showAll(); } }
以上是关于2020-4-19的主要内容,如果未能解决你的问题,请参考以下文章