Question: Please help me on this JAVA lab shown below. I already have my variables set up but need help with creating the additional 4 methods.
Please help me on this JAVA lab shown below. I already have my variables set up but need help with creating the additional 4 methods. Thank you
Write a program that will set up variables for each of the following:
Your first name and last name
How many miles you live from campus (guess if youre not sure)
How long (in minutes) it takes you to get to school on one typical day (one-way)
How many miles you get in your car per gallon of gas (guess if youre not sure)
Have your user enter
The cost of gas per gallon. NOTE: DO NOT HAVE YOUR USER ENTER ANY ADDITIONAL STUFF
Also define a constant variable for the number of class meeting sessions we have this semester (46).
Use helper methods as appropriate 4 at a minimum.
Using these variables, calculate
the number of hours (in hours and minutes) you will spend in your car driving to and from class this semester
total mileage this semester
the amount of money you will spend for gas
Display all of this information as follows
Student mileage report
============================================
Miles per trip xxx
Mileage this semester xxx
Cost of gas per gallon $x.xx
Miles per gallon xx.x
Cost of gas per trip xx.xx
Number of trips xxx
Hours/min in the car xx hours xx min
Cost of gas for the semester $xx.xx
Here is what I have so far:
import java.util.Scanner; public class esudde00Lab1 {
public static void main(String[] args) { // TODO Auto-generated method stub Scanner kb = new Scanner(System.in); String name = "Erica Autrand"; double MILES_FROM_CAMPUS = 8.5; int MINUTES_FROM_CAMPUS = 12; int CAR_MPG = 22; //user input System.out.println("What is the cost of gas per gallon?"); double gasPerGallon = kb.nextDouble();
}// end of main method
}//end of program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
