Advertisement
Guest User

LuxuryCarRental

a guest
Mar 21st, 2019
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package usecarrental;
  2.  
  3. public class LuxuryCarRental extends CarRental
  4. {
  5.     public LuxuryCarRental(String carsize, int days)
  6.     {
  7.         super(carsize, days);
  8.     }
  9.    
  10.     public void computetotal1()
  11.             {
  12.                 super.computetotal(days);
  13.                 rentalFeeDaily = 79.99;
  14.                 totalRentalFee = rentalFeeDaily;
  15.             }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement