Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Program specifics: Write a C++ program that does the following: a. Asks the user for the distance to the pin and the depth of the

Program specifics: Write a C++ program that does the following: a. Asks the user for the distance to the pin and the depth of the green (both in yards). (Note: The pin is the hole in the green and the depth is the diameter of the green, assuming it is circular.) b. Asks the user for an integer club number from 2 to 10, where 10 is the pitching wedge. If the user enters an invalid club number, the program prints a warning and asks for the club number again. c. Asks the user for a swing type, from 1 to 4, where 4 is a full swing, 3 is a three-quarters swing, 2 is a half swing, and 1 is a quarter swing. It would be nice if you checked to make sure the swing is a valid number, but it is not required. d. Reads from a data file golf.txt. You can make this file by creating it with these values: 10.2 3.27 53.5 -1.75 19.6 4.89 The file contains six numbers a1, b1, a2, b2, a3, and b3that are constants for the following equations: clubangle(degrees) = a1 + b1*0.85*clubnumber; (see figure at right) clublength(inches) = a2 + b2*1.05*clubnumber; (see figure at right) clubspeed(yards/s) = 1.1*(a3 + b3*swingnumber)*(clublength(inches)/40)^2; e. Determines the distance the ball travels, how far it lands from the hole that is on the green (the "pin"), and whether it hits on the green. You can assume the ball travels perfectly straight, there is no wind resistance, and the pin is in the center of the green. To determine distance the ball travels use the following equation:

distance = club speed^2 * sin(2*club angle in radians)/g

(g = 32.2 ft/s2 is the acceleration of gravity in English unitsmake sure you convert your units correctly to get distance in yards). f. The program reports to the screen, in a well-formatted table: the club used, the swing number, the distance the ball travels, the distance from the pin that the ball hits the ground (i.e., the error or accuracy), and "Yes" if the ball hits on the green, or else "No". Assume that the ball does not roll after hitting the ground (really wet ground). g. The table must have appropriate labels. h. If the ball does not hit the green, the program continues to ask the user for another club number and swing speed. i. If the club number entered is 99, the program ends without prompting for a club number and without printing the results table.

Please help ! I have 4 days

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

Intelligent Databases Object Oriented Deductive Hypermedia Technologies

Authors: Kamran Parsaye, Mark Chignell, Setrag Khoshafian, Harry Wong

1st Edition

0471503452, 978-0471503453

More Books

Students also viewed these Databases questions