Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using Thonny for the following Question: Write a program to provide information on the height of a ball thrown straight up into the air. The

Using Thonny for the following Question:

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 h + vt - 16t 2 feet. The program should perform the following two calculations:

(a) Determine the maximum height of the ball. Note: The ball will reach its maximum height after v/32 seconds.

(b) Determine approximately when the ball will hit the ground. Hint: Calculate the height after every .1 second and determine when the height is no 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 (a) and (b) should be carried out by functions.

Answer should come out as:

image text in transcribed

Enter the initial height of the ball: 5 Enter the initial velocity of the ball: 34 The maximum height of the ball is 23.06 feet. The ball will hit the ground after approximately 2.27 seconds. 8 8

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

Database Processing

Authors: David Kroenke

11th Edition

0132302675, 9780132302678

More Books

Students also viewed these Databases questions

Question

Know how to approach on-the-job training

Answered: 1 week ago