Question: Help me solve this 5 . 1 Module 3 | zyLAB ( LM ) : Driving cost - methods Write a method drivingCost ( )

Help me solve this
5.1 Module 3| zyLAB (LM): Driving cost - methods
Write a method drivingCost() with input parameters milesPerGallon, dollarsPerGallon, and milesDriven that returns the dollar cost to drive
those miles. All items are of type double. The method called with arguments (20.0,3.1599,50.0) returns 7.89975.
Define that method in a program whose inputs are the car's miles per gallon and the price of gas in dollars per gallon (both doubles). Output
the gas cost for 10 miles, 50 miles, and 400 miles, by calling your drivingCost() method three times.
Output each floating-point value with two digits after the decimal point, which can be achieved as follows:
System.out.printf("%.2f", yourValue);
The output ends with a newline.
Ex: If the input is:
20.03.1599
the output is:
1.587.9063.20
Your program must define and call a method:
public static double drivingCost(double milesPerGallon, double dollarsPerGallon, double milesDriven)
Default Template:
LabProgram
import java.util.Scanner;
public class LabProgram {
/* Define your method here */
Help me solve this 5 . 1 Module 3 | zyLAB ( LM )

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!