[백준] #5073 삼각형과 세 변 python
2023. 6. 27. 00:03
https://www.acmicpc.net/problem/5073
📕 나의 풀이 📕
삼각형의 조건과 여러 조건문을 사용해 풀이하였다.
🧑🏻💻 나의 코드 🧑🏻💻
while 1:
a, b, c = map(int, input().split())
if a == 0:
break
max_ = max(a,b,c)
if a + b + c - max_ <= max_:
print("Invalid")
elif a == b == c:
print("Equilateral")
elif a == b or b == c or a == c:
print("Isosceles")
elif a != b != c:
print("Scalene")
'Programming > Algorithm' 카테고리의 다른 글
[백준] #9655 돌 게임 python (0) | 2023.06.29 |
---|---|
[백준] #11723 집합 python (0) | 2023.06.28 |
[백준] #23971 ZOAC 4 python (0) | 2023.06.26 |
[백준] #1747 소수&팰린드롬 python (0) | 2023.06.11 |
[백준] #1074 Z python (0) | 2023.06.08 |