Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.awt.Rectangle;
- public class AreaTester {
- public static void main(String[] args) {
- Rectangle exercise = new Rectangle(10 , 15, 20, 20);
- double width = exercise.getWidth();
- double height = exercise.getHeight();
- System.out.println(width * height);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment