Question- The subsequent formula gives the distance between two points (x1, y1) and (x2, y2) in the Cartesian plane:
(x2-x1)^2 + (y2-y1)^2
Given the center and a point on a circle, you can use this formula to find the radius of a circle. Write a program that prompts the user to enter the center and a point on the circle.
Program- The program should then output the circle's radius, circumference, diameter, and area. Your program must have at least the given methods:
Part 1- distance: This method takes as its parameters four numbers that represent two points in the plane and returns the distance between them.
Part 2- Radius: This method takes as its parameter four numbers that represent the center and a point on the circle, calls the method distance to find the radius of the circle, and returns the circle's radius.
Part 3- Circumference: This method takes as its parameter a number that represents the radius of the circle and returns the circle's circumference. (if r is the radius, the circumference is 2(Pi)r.)
Part 4- Area: This method takes as its parameter a number that represents the radius of the circle and returns the circle's area. (If r is the radius, the area is (Pi)r^2.)
Assume that Pi =3.1416
Can you show me how to write a proper code for this problem and how to complete it. Thanks