Question
Write a class named Vehicle that has the following fields: make: a String that holds the make of the car model: an String that holds
Write a class named Vehicle that has the following fields: make: a String that holds the make of the car model: an String that holds the model of the car tankSize: an int that holds the car's gas tank size in gallons NOTE: The Vehicle Class is a new class within your project. It should be defined as a separate file. This does not affect the name of your Java Project above. In addition, the class should have the following constructor and other methods. Constructor: accepts the car's make, model, and tankSize as arguments. These values should be assigned to the object's make, model, and tankSize fields, respectively. Accessors: appropriate accessor methods should get the values stored in an object's make, model, and tankSize fields. Be sure to use the required naming convention for all accessor methods from the Programming Guidelines. distance: This method should calculate and display the distance the vehicle can travel on one tank of gas when driven in town and when driven on the highway. Assume the vehicle averages 25 miles per gallon when driven in town and 38.5 miles per gallon when driven on the highway. Hint: The following formula can be used to calculate the distance: Distance = Number of Gallons X Average Miles per Gallon Demonstrate the class in a program that creates a Vehicle object, and then calls the distance method. Be sure to display the make, model, tankSize, and distance. The distance should be displayed with no more than three (3) decimal places. Each output should be labeled clearly. read instructions carefully and error free,use comments and vehicle class created as a separate file.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started