🚊 [문제]
2개의 수를 입력 받아 크기를 비교하여 등호 또는 부등호를 출력하는 프로그램을 작성하라.
[input]
3
3 8
7 7
369 123
[output]
#1 <
#2 =
#3 >
import sys
sys.stdin = open("input.txt")
T = int(input())
for tc in range(1, T+1):
numbers = list(map(int,input().split()))
if numbers[0] > numbers[1]:
result = ">"
if numbers[0] == numbers[1]:
result = "="
if numbers[0] < numbers[1]:
result = "<"
print("#{} {}".format(tc, result))
🍦 [복습]
# 1. 210218
if a > b:
print("#{} {}".format(tc, ">"))
elif a == b:
print("#{} {}".format(tc,"="))
else:
print("#{} {}".format(tc,"<"))
다음과 같이 여러 줄에 걸친 if문에서 tc를 일일이 적어줘야 하는 경우가 있다.
# 2. 210223
복습 완료
# 3. 210225
복습 완료
'# 3. APS > SWEA' 카테고리의 다른 글
SWEA # Python_D1_2047_신문 헤드라인 ✅ (0) | 2021.02.14 |
---|---|
SWEA # Python_D1_2058_자릿수 더하기 ✅ (0) | 2021.02.14 |
SWEA # Python_D1_2063_중간값 찾기 ✅ (0) | 2021.02.14 |
SWEA # Python_D1_2072_홀수만 더하기 ✅ (0) | 2021.02.14 |
SWEA # Python_D3_11457_gravity (0) | 2021.02.13 |