Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

can you pls do this programming in java ? pls provide me the correct answer and complete answer! Also provide me the flowchart please !

can you pls do this programming in java ?
pls provide me the correct answer and complete answer! Also provide me the flowchart please !
image text in transcribed
image text in transcribed
Programming challenge 10 at the end of chapter 8 10. Car Instrument Simulator For this assignment, you will 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 car's current amount of fuel, in gallons. - To report the car's 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 15 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 car's odometer. Its responsibilities are as follows: - To know the car's current mileage. To report the car's 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 object's current amount of fuel by 1 gallon for every 24 miles traveled. (The car's 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 car's current mileage and amount of fue You only need to submit the source code ( java and not the project or the class) files of all the classes you'll implement and the driver program for the problem. Submit your flowchart or pseudo code. Add all your files in an archive file, name the archive fie as specified at the beginning of the semester, and submit the single archive file on eCampus before the due date. No assignments will be accepted as an email submission or as a hard copy after the due date. *Description: This program will displays a string without any user interaction *Class: Fall - cosc 1437.81002 *Assignment1: Hello World *Date: 08/15/2011 *@author Zoltan Szabo *@version 0.0.0 */ For each method, you will also be required to create docstring as follows

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

Students also viewed these Databases questions

Question

Write a Python program to check an input number is prime or not.

Answered: 1 week ago

Question

Write a program to check an input year is leap or not.

Answered: 1 week ago

Question

Write short notes on departmentation.

Answered: 1 week ago

Question

What are the factors affecting organisation structure?

Answered: 1 week ago