Question: Write an AreaTester program that constructs a Regtangle object and then computes and prints its area. Use the getWidth and getHeight methods. Also print the
Write an AreaTester program that constructs a Regtangle object and then computes and prints its area. Use the getWidth and getHeight methods. Also print the expected answer
Note: import java.awt.Rectangle. Constructs a Rectangle object and then computes and prints its area.
import java.awt.Rectangle;
/**
Constructs a Rectangle object and then computes and prints its area.
*/
public class AreaTester
{
public static void main(String[] args)
{
Rectangle r1 = new Rectangle(10, 20, 50, 70);
double area = r1.getWidth() * r1.getHeight();
System.out.println("Area: " + area);
System.out.println("Expected: 3500");
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
