Question: First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects). Then, create

First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects).

Then, create a new Java application called "DistanceCalc" (without the quotation marks) that requests two double values from the user at the command line:

amount of present fuel in gallons for the vehicle's fuel tank

the vehicle fuel efficiency (miles per gallon)

Compute how far, in miles, the vehicle can travel on the available fuel. Your program should output: "You are able to travel X.XX miles on remaining fuel." where X.XX is the miles distance you calculated.

So far i have the below code but i am not getting the output as per the above. Can someone please help?

import java.util.Scanner; import java.text.DecimalFormat;

public class DistanceCalc {

public static void main(String args[]) {

// Variables declaration double fuelInTank; double fuelEfficiency;

// Prompt for entering fuelInTank and fuelEfficience Scanner scan = new Scanner( System.in ); System.out.print("Enter amount of present fuel in gallons for the vehicle's fuel tank: "); fuelInTank = scan.nextDouble(); System.out.print("Enter the vehicle fuel efficiency (miles per gallon): "); fuelEfficiency = scan.nextDouble();

// Convert output to two point decimal DecimalFormat df = new DecimalFormat("0.##"); double mileDist= ( fuelEfficiency * fuelInTank); System.out.println("You are able to travel " + df.format(mileDist) + " miles on remaining fuel");

} }

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 Databases Questions!