-코드
for i in range(int(input())):
a, b, c = map(int, input().split())
if max(a, b, c) >= a + b + c - max(a, b, c):
print(f"Case #{i + 1}: invalid!")
elif a == b == c:
print(f"Case #{i + 1}: equilateral")
elif a == b or a == c or b == c:
print(f"Case #{i + 1}: isosceles")
else:
print(f"Case #{i + 1}: scalene")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬]6322번 직각 삼각형의 두 변 (0) | 2021.05.30 |
---|---|
[프로그래머스/파이썬] 문자열 다루기 기본 (0) | 2021.05.29 |
[백준/파이썬]1357번 뒤집힌 덧셈 (0) | 2021.05.28 |
[백준/파이썬]1032번 명령 프롬프트 (0) | 2021.05.28 |
[백준/파이썬]15792번 A/B - 2 (0) | 2021.05.27 |