Advertisement
Arush22

Untitled

Dec 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. package com.suarez;
  2. public class ClientBox {
  3. public static void main (String[] args){
  4.  
  5. Box box1 = new Box();
  6.  
  7. Box box2 = new Box();
  8.  
  9. box1.setWidth(7);
  10. box1.setLength(12);
  11.  
  12. box2.setWidth(5);
  13. box2.setLength(9);
  14.  
  15. box1.toString(box1.CalulateArea(),box1.CalculateVolume(10));
  16. box2.toString(box2.CalulateArea(),box2.CalculateVolume(11));
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement