Problem Solving with C++ (9th Edition)
Problem Solving with C++ (9th Edition)
9th Edition
ISBN: 9780133591743
Author: Walter Savitch
Publisher: PEARSON
bartleby

Videos

Textbook Question
Book Icon
Chapter 4, Problem 1P

A liter is 0.264179 gallons. Write a program that will read in the number of liters of gasoline consumed by the user’s car and the number of miles traveled by the car and will then output the number of miles per gallon the car delivered. Your program should allow the user to repeat this calculation as often as the user wishes. Define a function to compute the number of miles per gallon. Your program should use a globally defined constant for the number of liters per gallon.

Expert Solution & Answer
Check Mark
Program Plan Intro
  • Include required header files.
  • Declare and initialize a constant value “lpg = 0.264179”.
  • Define a function named “calc()” to calculate “milage”.
    • Declare a variable “gal”.
    • Compute “gal” and “milage”
    • Function to return “milage”.
  • Define a “main()” function.
    • Declare the variables “lit” and “miles”.
    • Declare a variable “ch”.
    • “do… while” loop to get the user input repeatedly.
      • Get the “lit” and “miles” from the user.
      • Call “calc()” with an arguments “lit” and “miles” values and print the “milage”.
      • Get the user input to repeat the program or not.
    • The input is checked with the condition and repeat or exit the program.

Explanation of Solution

Program to compute number of miles per gallon the car delivered:

// Include required header files

#include <iostream>

using namespace std;

// Assign const value

float const lpg=0.264179;

// Function definition of calc()

float calc(float liters, float miles)

{

  // Declare gal

  float gal;

  // Compute gal

  gal = lpg * liters;

  // Compute milage

  float milage = miles/gal;

  // Return milage

  return(milage);

}

// Function definition of main()

int main()

{

  // Declare lit and miles

  float lit, miles;

  // Declare ch

  char ch;

  // do... while loop

  do{

    // Get the liters

cout<<"\nEnter the number of liters of gasoline: ";

    // Assign the user input to lit

    cin>>lit;

    // Get the miles

cout<<"\nEnter the number of miles Travelled: ";

    // Assign the user input to miles

    cin>>miles;

// Display the miles per gallon the car delivered

cout<<"\nNumber of miles per gallon the car delivered: ";

// Call the function cal() and return the result

    cout<< calc(lit, miles) << endl;

    // Get the user input

    cout<<"\nDo you want to repeat(y/n)??: ";

    // Assign the user input to ch

    cin>>ch;

  // While loop condition to check ch is equal to y

  }while(ch=='y' || ch=='Y');

  // Return 0

  return 0;

}

Sample Output

Enter the number of liters of gasoline:  5

Enter the number of miles Travelled:  30

Number of miles per gallon the car delivered: 22.7119

Do you want to repeat(y/n)??:  n

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
S A B D FL I C J E G H T K L Figure 1: Search tree 1. Uninformed search algorithms (6 points) Based on the search tree in Figure 1, provide the trace to find a path from the start node S to a goal node T for the following three uninformed search algorithms. When a node has multiple successors, use the left-to-right convention. a. Depth first search (2 points) b. Breadth first search (2 points) c. Iterative deepening search (2 points)
We want to get an idea of how many tickets we have and what our issues are. Print the ticket ID number, ticket description, ticket priority, ticket status, and, if the information is available, employee first name assigned to it for our records. Include all tickets regardless of whether they have been assigned to an employee or not. Sort it alphabetically by ticket status, and then numerically by ticket ID, with the lower ticket IDs on top.
Figure 1 shows an ASM chart representing the operation of a controller. Stateassignments for each state are indicated in square brackets for [Q1, Q0].Using the ASM design technique:(a) Produce a State Transition Table from the ASM Chart in Figure 1.(b) Extract minimised Boolean expressions from your state transition tablefor Q1, Q0, DISPATCH and REJECT. Show all your working.(c) Implement your design using AND/OR/NOT logic gates and risingedgetriggered D-type Flip Flops. Your answer should include a circuitschematic.

Chapter 4 Solutions

Problem Solving with C++ (9th Edition)

Ch. 4.3 - Write a function definition for a function called...Ch. 4.3 - Write a function definition for a function called...Ch. 4.3 - Write a function definition for a function isDigit...Ch. 4.3 - Write a function definition for a function...Ch. 4.4 - What is the purpose of the comment that...Ch. 4.4 - Prob. 16STECh. 4.4 - Prob. 17STECh. 4.4 - Carefully describe the process of program testing.Ch. 4.4 - Prob. 19STECh. 4.5 - If you use a variable in a function definition,...Ch. 4.5 - Suppose a function named Function1 has a variable...Ch. 4.5 - The following function is supposed to take as...Ch. 4.5 - Prob. 23STECh. 4.6 - Prob. 24STECh. 4.6 - Prob. 25STECh. 4.6 - Prob. 26STECh. 4.6 - Suppose you have two function definitions with the...Ch. 4.6 - This question has to do with the Programming...Ch. 4.6 - Prob. 29STECh. 4 - A liter is 0.264179 gallons. Write a program that...Ch. 4 - Modify your program from Practice Program 1 so...Ch. 4 - The price of stocks is sometimes given to the...Ch. 4 - Write a program to gauge the rate of inflation for...Ch. 4 - Enhance your program from the previous Practice...Ch. 4 - Write a function declaration for a function that...Ch. 4 - The gravitational attractive force between two...Ch. 4 - Prob. 8PCh. 4 - Prob. 9PCh. 4 - Write a program that computes the annual after-tax...Ch. 4 - Write a program that asks for the users height,...Ch. 4 - Modify your program from Programming Project 2 so...Ch. 4 - Write a program that outputs the lyrics for the...Ch. 4 - To maintain ones body weight, an adult human needs...Ch. 4 - You have invented a vending machine capable of...Ch. 4 - Your time machine is capable of going forward in...Ch. 4 - Do Programming Project 11 from Chapter 3 except...

Additional Engineering Textbook Solutions

Find more solutions based on key concepts
When a program is finished using a file, it should do this. a. erase the file b. open the file c. close the fil...

Starting Out with Programming Logic and Design (5th Edition) (What's New in Computer Science)

Assume that the following enumerated data type has been declared: enum Creatures{ HOBBIT, ELF, DRAGON } What wi...

Starting Out with Java: From Control Structures through Data Structures (4th Edition) (What's New in Computer Science)

Employee Updater Write a GUI application that allows the user to look up an employee in the Personnel database ...

Starting Out with Java: From Control Structures through Objects (7th Edition) (What's New in Computer Science)

Knowledge Booster
Background pattern image
Computer Science
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
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:9780357392676
Author:FREUND, Steven
Publisher:CENGAGE L
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
Computer Programming for Beginners | Functions, Parameters & Arguments | Ep24; Author: Programming With Avelx;https://www.youtube.com/watch?v=VXlh-qJpfw0;License: Standard YouTube License, CC-BY