Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public Vehicle(double fuelQuantity, double fuelConsumtpion, double tankCapacity)
  2. {
  3. if (fuelQuantity <= tankCapacity)
  4. {
  5. this.FuelQuantity = fuelQuantity;
  6. }
  7. else
  8. {
  9. this.FuelQuantity = 0;
  10. }
  11.  
  12. this.FuelConsumption = fuelConsumtpion;
  13. this.TankCapacity = tankCapacity;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement