(Geometry: point in a circle?) Write a program that prompts the user to enter a point (x, y) and checks whether the point is within the circle centered at (0, 0) with radius 10. For example, (4, 5) is inside the circle and (9, 9) is outside the circle, as shown in Figure.
(Hint: A point is in the circle if its distance to (0, 0) is less than or equal to 10. The formula for computing the distance is
Test your program to cover all cases.) Two sample runs are shown below.



FIGURE (a) Points inside and outside of the circle. (b) Points inside and outside of the rectangle.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.