-
[Python] "피타고라스의 정리" AlgorithmAlgorithm 2021. 10. 30. 12:49
## 피타고라스의 정리 in Python print("-- 피타고라스 정리 계산기 --") ytox = input("조건 1 : y에서 x까지의 거리는?\n") ytoz = input(("조건 2 : y에서 z까지의 거리는?\n")) answer_square = eval("int(ytox) ** 2 + int(ytoz) ** 2") print("정답 : ", end="") print(eval("answer_square ** (1/2)"))
'Algorithm' 카테고리의 다른 글
[Programmers/ Python] 로또의 최고 순위와 최저 순위 (0) 2021.11.30 [Programmers/ Python] 완주하지 못한 선수 (0) 2021.11.30 백준 <1436번 : 영화감독 숌> (0) 2021.07.27 백준 <4673번 : 셀프 넘버> (0) 2021.07.27 백준 <2884번 : 알람시계> (0) 2021.07.27