the output part of your test plan). This may involve multiple calls to your function in the driver with different inputs. The following formula gives the distance between two points (x1, y1) and (x2, y2) in the Cartesian plane: Note that thecalculation of the radius of a circle is a specialized version of the distance calculation. For this program write a function called calcDistance with the precondition that it takes as input the coordinates of two points on the cartesian plane and the postcondition that it returns the distance between these two points. The write a function called calcRadius with the precondition that it takes as input the coordinates for the center of a circle and the coordinates of a point on the circumference. The postcondition is that it returns the radius of the circle. Have the specialized calcRadius function call the more general calcDistance function which would return the result of the distance function as the radius of the circle. Notice that the output for the program does not ask for the distance, it only asks for the radius so the calcDistance function is “hidden” from the main function. Include a function calcCircumference which takes as input the radius of the circle and returns the circumference (If ris the radius, the circumference is 2πr). Also include a function calcArea which takes as input the radius of the circle and returns the area (if ris the radius, the area is πr2). Assume that π= 3.1416. Consider the main function for this program to be an application.Provide comments at the beginning of the program that describe the user input, the processing, and the output the program will produce (i.e., your IPO chart in comment form). The processing may be described as an algorithm, you do not have to provide pseudocode. Use prototypes for your functions and document the preconditions and postconditions for your functions as comments before or after the prototype.Put the function definitions after the main function. C++
(the output part of your test plan). This may involve multiple calls to your function in the driver with different inputs.
The following formula gives the distance between two points (x1, y1) and (x2, y2) in the Cartesian plane:
Note that thecalculation of the radius of a circle is a specialized version of the distance calculation. For this
The write a function called calcRadius with the precondition that it takes as input the coordinates for the center of a circle and the coordinates of a point on the circumference. The postcondition is that it returns the radius of the circle.
Have the specialized calcRadius function call the more general calcDistance function which would return the result of the distance function as the radius of the circle. Notice that the output for the program does not ask for the distance, it only asks for the radius so the calcDistance function is “hidden” from the main function.
Include a function calcCircumference which takes as input the radius of the circle and returns the circumference (If ris the radius, the circumference is 2πr).
Also include a function calcArea which takes as input the radius of the circle and returns the area (if ris the radius, the area is πr2).
Assume that π= 3.1416.
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images