Question
C++ ASSIGNMENT: Area of a Circle The following formula gives the distance between two points, (x1, y1) and (x2, y2) in the Cartesian plane: Given
C++ ASSIGNMENT: Area of a Circle
The following formula gives the distance between two points, (x1, y1) and (x2, y2) in the Cartesian plane:
Given the center and a point on the circle, you can use this formula to find the radius of the circle. Write a program that prompts the user to enter the center and a point on the circle. The program should then output the circles radius, diameter, circumference, and area. Your program must have at least the following functions:
calculateRadius: Receives the x-y coordinates of the center and point on the circle (as input by the user) and calculates the distance between the points. This value is returned as the radius of the circle.
calculateArea: Receives the radius of a circle, calculates and returns the area of the circle.
calculatePerimeter: Receives the radius of a circle, calculates and returns the perimeter of the circle.
The output should clearly display the radius, area, and perimeter of the resulting circle.
(x2 - ri)2 + (2 -n)2Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started