-->
当前位置:首页 > 题库

PROGRAMMING:Is the point in the circle?

Luz5年前 (2021-05-10)题库368
Write a program to prompt the user to input a point (x, y), and then check whether the point is in the circle with the origin (0,0) as the center and radius of 10.
###Input format:
Enter the x-axis and y-axis coordinate values of any point, and the spaces between the two values are separated.
###Output format:
If the point is in the circle, output 1, otherwise output 0.
###Input example:
```in
4 5
```
###Output example:
```out
one
```







answer:If there is no answer, please comment