(This is for Cengage Mindtap, highly recommend using this. If not available, use devc++ version 5.11 but Cengage will be more precise sometimes.)
The following formula gives the distance between two points,(x₁,y₁) and(x₂,y₂) in the Cartesian plane:
\sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}(x2−x1)2+(y2−y1)2
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 circle’s radius, diameter, circumference, and area. Your program must have at least the following functions:
Format your output with setprecision(2) to ensure the proper number of decimals for testing!
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here