fosterbl

RectangleRunner.java

Oct 28th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. public class RectangleRunner{
  2.    public static void main(String[] args){
  3.       //Instantiation of r1
  4.       Rectangle r1 = new Rectangle();
  5.       //Call methods on r1
  6.       r1.setLength(5.0);
  7.       r1.setWidth(3.0);
  8.       System.out.println( r1.area() );
  9.       r1.setLength(4.0);
  10.       System.out.println( r1.area() );
  11.    }
  12. }
Add Comment
Please, Sign In to add comment