私は Dr. Java を使用しており、言語は Java です ...私は初心者です * 単なる基本的な四角形です
問題:
Rectangle オブジェクト (java.awt.Rectangle) を構築するプログラムを作成します。オブジェクトには、 Rectangle オブジェクトの計算と領域がgetWidth(5)
必要getHeight(8)
です。System.out.println()
次に、周囲を計算し、同様に印刷します。
私がこれまでに持っているもの
//finding the area
int Width = 5;
int Height = 8;
Rectangle bob = new Rectangle(0,0,5,8);
double area = bob.getWidth()*bob.getHeight();
System.out.println("area = " + area);
// Find the perimeter
double perimeter = 2*(bob.getHeight()) + 2*(bob.getWidth());
System.out.println("get the perimeter = " + perimeter);`