Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Complete the program by writing and testing the calcMpg() method. import java.util.Scanner; public class MileageCalc { public static double convKilometersToMiles(double numKm) { double milesPerKm =

Complete the program by writing and testing the calcMpg() method.

import java.util.Scanner;

public class MileageCalc { public static double convKilometersToMiles(double numKm) { double milesPerKm = 0.621371; return numKm * milesPerKm; } public static double convLitersToGallons(double numLiters) { double litersPerGal = 0.264172; return numLiters * litersPerGal; } public static double calcMpg(double distMiles, double gasGallons) { System.out.println("FIXME: Calculate MPG"); return 0.0; }

public static void main(String[] args) { Scanner scnr = new Scanner(System.in); double distKm; double distMiles; double gasLiters; double gasGal; double userMpg; System.out.println("Enter kilometers driven: "); distKm = scnr.nextDouble(); System.out.println("Enter liters of gas consumed: "); gasLiters = scnr.nextDouble(); distMiles = convKilometersToMiles(distKm); gasGal = convLitersToGallons(gasLiters); userMpg = calcMpg(distMiles, gasGal); System.out.println("Miles driven: " + distMiles); System.out.println("Gallons of gas: " + gasGal); System.out.println("Mileage: " + userMpg + " mpg"); } }

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

Recommended Textbook for

Database 101

Authors: Guy Kawasaki

1st Edition

0938151525, 978-0938151524

More Books

Students also viewed these Databases questions

Question

Explain the nature of human resource management.

Answered: 1 week ago

Question

Write a note on Quality circles.

Answered: 1 week ago

Question

Describe how to measure the quality of work life.

Answered: 1 week ago

Question

What do Dimensions represent in OLAP Cubes?

Answered: 1 week ago