Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Basic and Clean Approach, Please post the answer in Text Format. Car Instrument Simulator Problem Description: Please design a set of classes that work together

Basic and Clean Approach, Please post the answer in Text Format.

Car Instrument Simulator

Problem Description:

Please design a set of classes that work together to simulate a car's fuel gauge and odometer. The classes you will design are the following:

The FuelGauge Class: This class will simulate a fuel gauge. Its responsibilities are as follows:

  • To know the cars current amount of fuel, in gallons.
  • To report the cars current amount of fuel, in gallons.
  • To be able to increment the amount of fuel by 1 gallon. This simulates putting fuel in the car. ( The car can hold a maximum of 20 gallons.)
  • To be able to decrement the amount of fuel by 1 gallon, if the amount of fuel is greater than 0 gallons. This simulates burning fuel as the car runs.

The Odometer Class: This class will simulate the cars odometer. Its responsibilities are as follows:

  • To know the cars current mileage.
  • To report the cars current mileage.
  • To be able to increment the current mileage by 1 mile. The maximum mileage the odometer can store is 999,999 miles. When this amount is exceeded, the odometer resets the current mileage to 0.
  • To be able to work with a FuelGauge object. It should decrease the FuelGauge objects current amount of fuel by 1 gallon for every 24 miles traveled. (The cars fuel economy is 24 miles per gallon.)

Demonstrate the classes by creating instances of each. Simulate filling the car up with fuel, and then run a loop that increments the odometer until the car runs out of fuel. During each loop iteration, print the cars current mileage and amount of fuel.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Basics Computer EngineeringInformation Warehouse Basics From Science

Authors: Odiljon Jakbarov ,Anvarkhan Majidov

1st Edition

620675183X, 978-6206751830

More Books

Students also viewed these Databases questions