Advertisement
sudoaptinstallname

Untitled

Feb 18th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class BOXCLIENT {
  4. public static void main(String [] args)
  5. {
  6. BOX box1 = new BOX();
  7. // BOX box2 = new BOX();
  8. // BOX box3 = new BOX();
  9.  
  10. System.out.println(box1.toString());
  11. System.out.println(box1.CalculateArea());
  12. System.out.println(box1.CalculateVolume());
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement