
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
i need help with a flow chart for this program
![## Java Program to Calculate Driving Cost
This example demonstrates a simple Java program that calculates the cost of driving based on user inputs. The provided code asks the user to input the driving distance, fuel efficiency, and the price per gallon of fuel. Then, it calculates and outputs the cost of the trip.
### Code Explanation
Here is the breakdown of the Java program:
1. **Import the Scanner Class**:
```java
import java.util.Scanner;
```
2. **Define the Class DrivingCost**:
```java
public class DrivingCost
{
```
3. **Main Method**:
```java
public static void main(String[] args)
{
```
4. **Variable Declaration and User Input**:
- **Initialize Scanner**: This object will be used to capture user inputs.
```java
Scanner scan = new Scanner(System.in);
```
- **Driving Distance**: Prompts the user to input the driving distance and stores the value.
```java
System.out.print("Enter the driving distance: ");
double drivingDistance = scan.nextDouble();
```
- **Fuel Efficiency**: Prompts the user to input the fuel efficiency in miles per gallon and stores the value.
```java
System.out.print("Enter miles per gallon: ");
double fuelEfficiency = scan.nextDouble();
```
- **Price Per Gallon**: Prompts the user to input the price per gallon of fuel and stores the value.
```java
System.out.print("Enter price per gallon: ");
double pricePerGallon = scan.nextDouble();
```
5. **Calculation**:
- Calculates the driving cost using the formula:
\[
\text{drivingcost} = \left( \frac{\text{drivingDistance}}{\text{fuelEfficiency}} \times \text{pricePerGallon} \right)
\]
```java
double drivingcost = (drivingDistance / fuelEfficiency) * pricePerGallon;
```
6. **Output the Result**:
- Outputs the calculated driving cost.
```java
System.out.printf("The cost of driving is $%.2f\n", drivingcost);
```
7. **Close the Class and Main Method**:
```java
}
}
```
### Full Program Code
```java](https://content.bartleby.com/qna-images/question/c4b4111f-0cb3-46a3-bff1-74a667fd5dd6/7ed95523-237d-43b8-9ed2-664f61316737/zwhrrbq_thumbnail.png)
Transcribed Image Text:## Java Program to Calculate Driving Cost
This example demonstrates a simple Java program that calculates the cost of driving based on user inputs. The provided code asks the user to input the driving distance, fuel efficiency, and the price per gallon of fuel. Then, it calculates and outputs the cost of the trip.
### Code Explanation
Here is the breakdown of the Java program:
1. **Import the Scanner Class**:
```java
import java.util.Scanner;
```
2. **Define the Class DrivingCost**:
```java
public class DrivingCost
{
```
3. **Main Method**:
```java
public static void main(String[] args)
{
```
4. **Variable Declaration and User Input**:
- **Initialize Scanner**: This object will be used to capture user inputs.
```java
Scanner scan = new Scanner(System.in);
```
- **Driving Distance**: Prompts the user to input the driving distance and stores the value.
```java
System.out.print("Enter the driving distance: ");
double drivingDistance = scan.nextDouble();
```
- **Fuel Efficiency**: Prompts the user to input the fuel efficiency in miles per gallon and stores the value.
```java
System.out.print("Enter miles per gallon: ");
double fuelEfficiency = scan.nextDouble();
```
- **Price Per Gallon**: Prompts the user to input the price per gallon of fuel and stores the value.
```java
System.out.print("Enter price per gallon: ");
double pricePerGallon = scan.nextDouble();
```
5. **Calculation**:
- Calculates the driving cost using the formula:
\[
\text{drivingcost} = \left( \frac{\text{drivingDistance}}{\text{fuelEfficiency}} \times \text{pricePerGallon} \right)
\]
```java
double drivingcost = (drivingDistance / fuelEfficiency) * pricePerGallon;
```
6. **Output the Result**:
- Outputs the calculated driving cost.
```java
System.out.printf("The cost of driving is $%.2f\n", drivingcost);
```
7. **Close the Class and Main Method**:
```java
}
}
```
### Full Program Code
```java
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 2 steps with 1 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- I need a program written in C++ based on the parameters listed in the attachment, please. Thanks in advancearrow_forwardDon't you dare give me AI generated answer or plagiarised answer. If I see these things I'll give you multiple downvotes and will report immediately.arrow_forwardI am creating a c++ snakes and ladders game (no visuals). I want the game to have up to 5 or 6 players. For the snakes/ladders I am going to create a function which needs the dice roll and adds it to the score which will then decide if the player has landed on a snake or a ladder, is there any way I can get all players scores to be stored in the “score” variable in the switch statements without using multiple switch statements? So I basically want a switch statement which can accommodate all 1-6 players . E.g p1 initially at 1 rolls a 4. So their new score is 1+4=5, then the switch function checks for a ladder or snake. Then player 2 who's initially a 2 rolls a 5, so their new score is 2+5=7 then THE SAME switch function checks for a snake or ladder... And so on for all other players.arrow_forward
- Question: I screenshot my work, but do not if i put extra in that does not need to be there or if i am missing something to not be able to get rid of the errors listed at the bottom. theyre both in relation to line 1 and i dont even see a probelm with the line. Assignment:Write a C++ program that computes a student’s grade for an assignment as a percentage given the student’s score and total points. The final score must be rounded up to the nearest whole value using the ceil function in the header file. You must also display the floating-point result up to 5 decimal places. The input to the program must come from a file containing a single line with the score and total separated by a space. In addition, you must print to the console “Excellent” if the grade is greater than or equal to 90, “Well Done” if the grade is less than 90 and greater than or equal to 80, “Good” if the grade is less than 80 and greater than or equal to 70, “Need Improvement” if the grade is less than 70 and…arrow_forwardAssninment I can do the flow chart I just need helpfiguring out why my code will not run correctly there is for a Java . I can do the flow chart on my own . Design (with a Visio flowchart) and code Programming Challenge 11. Celsius to Fahrenheit Table on p.264. Develop a 'Test Plan' in Excel and verify that your program works as expected. Submit your design flowchart, CelsiusFahrenheit.java and Test Plan files using the link below. For this program, you cannot use jOptionPane. In order to receive full credit, be sure your program includes: Top of program comments (see Resources for a checklist), meaningful comments throughout the code, proper indents/spacing and meaningful variable names at the top of the main method and output which is well labeled. At this point in the semester, you should be submitting code that includes good form and documentation throughout. Reductions for not following the class standards be a minimum of 20% of the grade. An example of my…arrow_forwardI need help creating a python program for creating/designing a triangle area calculator. needed for this python program. standard input/output functions operator precedence Math module As an example, distance, d1, between the points (x1, y1) and (x2, y2) is calculated as: d1 = ((x2 – x1)2 + (y2 – y1)2)1/2. Similarly, calculate the distances between the points (x1, y1) and (x3, y3), and the points (x2, y2) and (x3, y3). Once d1, d2, and d3 are calculated, then calculate, s, one-half the perimeter of the triangle: s = ( d1 + d2 + d3 ) / 2 And then, calculate the area of the triangle: Area = (( s( s-d1)( s-d2)( s-d3) ))1/2arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education