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 you’re 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 you’re 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
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
• Your first name and last name
• How many miles you live from campus (guess if you’re 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 you’re 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
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)