Centroid of Triangle problem failing for other test cases

前端 未结 0 1069
闹比i
闹比i 2021-01-29 21:54
x1=int(input())    #Centroid/Equidistant
y1=int(input())
x2=int(input())
y2=int(input())
x3=int(input())
y3=int(input())
X=(x1+x2+x3)/3
Y=(y1+y2+y3)/3
print(round(X,4))
         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题