首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴song0758的代码贴C语言
def chick():
    s=input("请输入坐标: x , y ")
    x,y=tuple(map(float,s.split(",")))
    #print('x=',x, "y=",y)
    for i in [(2,2),(-2,2),(-2,-2),(2,-2)]:
        if (x-i[0])**2+(y-i[1])**2<=1:
            return (f"在圆心{i}的圆内")
    return "不在圆内"
print(chick())
阅读全部 | 2021年7月9日 15:06
1
song0758