Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

Conceptual Database Design An Entity Relationship Approach

Authors: Carol Batini, Stefano Ceri, Shamkant B. Navathe

1st Edition

0805302441, 978-0805302448

More Books

Students also viewed these Databases questions