micher43

Testing E2.1

Sep 25th, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. import java.awt.Rectangle;
  2.  
  3. public class AreaTester {
  4.  
  5.     public static void main(String[] args) {
  6.         Rectangle exercise = new Rectangle(10 , 15, 20, 20);
  7.         double width = exercise.getWidth();
  8.         double height = exercise.getHeight();
  9.         System.out.println(width * height);
  10.  
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment