1. 程式人生 > >12.10作業2

12.10作業2

/2、定義一個矩形類Rectangle: [必做題]
2.1 定義三個方法:getArea()求面積、getPer()求周長,showAll()分別在控制檯輸出長、寬、面積、周長。
2.2 有2個屬性:長length、寬width
2.3 通過構造方法Rectangle(int width, int length),分別給兩個屬性賦值
2.4 建立一個Rectangle物件,並輸出相關資訊
/




package Text1;

public class Rectangle {
	int length;
	int width;
	
	Rectangle(int length,int
width){ this.length = length; this.width = width; } double getArea(int length,int width){ int getArea = this.length*this.width; return getArea; } double getPer(int length,int width){ int getPer = 2*(this.length+this.width); return getPer; } void showAll(int length,int width)
{ System.out.println("長:"+this.length+"寬:"+this.width); System.out.println("周長:"+2*(this.length+this.width)); System.out.println("面積:"+this.length*this.width); } }
package Text1;

public class Text2 {
public static void main(String[] args) {
	Rectangle A = new Rectangle(3,
4); A.showAll(3, 4); } }