Advertisement
Guest User

Untitled

a guest
Oct 24th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1.  
  2.  
  3.  
  4. public class ShippingChargesTest {
  5.  
  6. /**
  7. * @param args
  8. */
  9. public static void main(String[] args) {
  10. // TODO Auto-generated method stub
  11.  
  12. ShippingCharges sc1;
  13.  
  14. sc1 = new ShippingCharges(5.0,600.0);
  15.  
  16.  
  17.  
  18. System.out.println("Price to ship your package is: " + sc1.shippingCharge());
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement