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++

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

(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++
V (w2 – 2
1)² + (y2 – Y1)²
-
-
Transcribed Image Text:V (w2 – 2 1)² + (y2 – Y1)² - -
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Types of Function
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education