Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in c + + The distance a vehicle travels can be calculated as follows: distance = speed * time For example, if a train travels

in c++ The distance a vehicle travels can be calculated as follows:
distance = speed * time
For example, if a train travels 40 miles per hour for 3 hours, the distance traveled is 120 miles.
Write a program that asks the user for the speed of a vehicle (in miles per hour) and how many hours it has traveled. The program should then use a loop to display the distance the vehicle has traveled for each hour of that time period. Here is an example of the output:
What is the speed of the vehicle in mph?40
How many hours has it traveled? 3
Hour Distance Traveled
--------------------------------
140
280
3120
Important Requirements:
Having a correct solution is required, however, your grade will be based mostly on quality of the code. Specifically:
separating the problem into simple functions that take parameters and return values (main should contain almost no code, just a few function calls)
using meaningful names for variables and functions
correct indentation
code comments (describe the purpose of functions and major blocks of code)- make sure to include your name, the date and contact information
input validation (e.g., don't accept a negative speed or hours)

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

Harness The Power Of Big Data The IBM Big Data Platform

Authors: Paul Zikopoulos, David Corrigan James Giles Thomas Deutsch Krishnan Parasuraman Dirk DeRoos Paul Zikopoulos

1st Edition

0071808183, 9780071808187

More Books

Students also viewed these Databases questions

Question

5 The mechanics of the circular flow model.

Answered: 1 week ago

Question

1 The difference between a command system and a market system.

Answered: 1 week ago

Question

4 How the market system adjusts to change and promotes progress.

Answered: 1 week ago