Write a program to provide information on the height of a ball thrown straight up into the air. The program should request as input the initial height, h feet, and the initial velocity, v feet per second. The height of the ball after t seconds is, in feet: h+ vt – 16t2 The program should perform the following two calculations: 1. Determine the maximum height of the ball, Note: The ball will reach its maximum height after v/32 seconds. 2. Determine the approximately when the ball will hit the ground. Hint. Calculate the height after every 0.01 second and determine when the height is not longer a positive number A function named getinput should be used to obtain the values of h and v.and that function should call a function named isValid to ensure that the input values are positive numbers. Each of the tasks 1 and 2 should be carried out by functions. Also within one of your function you must use the return feature (you can use this feature in all functions if you want as well). Below is example of the inputs and outputs that vou could get:

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter1: Fundamentals Of C++ Programming
Section1.3: Preliminary Three: Software Development
Problem 8E
icon
Related questions
Question
How do you do this using the try statement with except clause to make sure that the user, me, uses an number and not a character? Please comment explanation for each line
Write a program to provide information on the height of a ball
thrown straight up into the air, The program should request as
input the initial height, h feet, and the initial velocity, v feet per
second. The height of the ball after t seconds is, in feet:
h+ vt- 16t2
The program should perform the following two calculations:
1. Determine the maximum height of the ball. Note: The ball
will reach its maximum height after v/32 seconds.
2. Determine the approximately when the ball will hit the
ground. Hnt. Calculate the height after every 0.01 second
and determine when the height is not longer a positive
number.
A function named getinput should be used to obtain the values
of h and v and that function should calla function named isValid
to ensure that the input values are positive numbers. Each of
the tasks 1 and 2 should be carried out by functions. Also within
one of your function you must use the return feature (vou can
use this feature in all functions if you want as well). Below is
example of the inputs and outputs that you could get:
Transcribed Image Text:Write a program to provide information on the height of a ball thrown straight up into the air, The program should request as input the initial height, h feet, and the initial velocity, v feet per second. The height of the ball after t seconds is, in feet: h+ vt- 16t2 The program should perform the following two calculations: 1. Determine the maximum height of the ball. Note: The ball will reach its maximum height after v/32 seconds. 2. Determine the approximately when the ball will hit the ground. Hnt. Calculate the height after every 0.01 second and determine when the height is not longer a positive number. A function named getinput should be used to obtain the values of h and v and that function should calla function named isValid to ensure that the input values are positive numbers. Each of the tasks 1 and 2 should be carried out by functions. Also within one of your function you must use the return feature (vou can use this feature in all functions if you want as well). Below is example of the inputs and outputs that you could get:
Expert Solution
Step 1

The program for the above given question is below:

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Constants and Variables
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr