Question: Driving is expensive. Write a program in Java with a car's gas mileage (miles/gallon) and the cost of gas (dollars/gallon) as floating-point input, and output
Driving is expensive. Write a program in Java with a car's gas mileage (miles/gallon) and the cost of gas (dollars/gallon) as floating-point input, and output the gas cost for 20 miles, 75 miles, and 500 miles.
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.0 3.1599
where the gas mileage is 20.0 miles/gallon and the cost of gas is $3.1599/gallon, the output is:
3.16 11.85 79.00
Note: Real per-mile cost would also include maintenance and depreciation.
import java.util.Scanner;
public class LabProgram { public static void main(String[] args) {
} }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
