지나가던 개발자
[Python] 코드업 5078번(삼각형의 형태) 문제 풀이 본문
a,b,c = int(input()), int(input()), int(input())
if a==b==c:
print("Equilateral")
elif a==b or b==c or c==a:
print("Isosceles")
else:
if a+b+c==180:
print("Scalene")
else:
print("Error")
'PS > Python' 카테고리의 다른 글
[Python] NYPC 2023 Round 1 <메이플스토리 새로운 직업 고르기> 풀이 (0) | 2023.08.16 |
---|---|
[Python] 백준 17254번(키보드 이벤트) 문제 풀이 (0) | 2023.08.14 |
[Python] 백준 2456번(나는 학급회장이다) 문제 풀이 (0) | 2023.07.13 |
[Python] 백준 11047번(동전 0) 문제 풀이 (0) | 2023.03.09 |
[Python] 백준 5585번(거스름돈) 문제 풀이 (0) | 2023.02.25 |
Comments