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
Step by step
Solved in 2 steps