Task 2 The Following Formula Gives The Distance Between Two Points X1 Y1 And X2 Y2 In The Cartesian Plane X2 X 1 (45.8 KiB) Viewed 9 times
Task 2 The Following Formula Gives The Distance Between Two Points X1 Y1 And X2 Y2 In The Cartesian Plane X2 X 2 (9.86 KiB) Viewed 9 times
Task 2: The following formula gives the distance between two points, (x1, y1) and (x2, y2) in the Cartesian plane. (x2-x1)² + (y2-y1)² 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. Your program must have at least the following functions: ➤ distance: This function takes as its parameters four numbers that represent two points in the plane and returns the distance between them. radius: This function takes as its parameters four numbers that represent the center and a point on the circle, calls the function distance to find the radius of the circle, and returns the circle's radius.
Task 2: Design a function to find the factorial of a number entered by user. 4!= 4*3*2*1 6!= 6*5*4*3*2*1
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!