# 3. APS/SWEA

SWEA # Python_D1_2070_큰 놈, 작은 놈, 같은 놈 ✅

둥굴둥굴둥굴레차 2021. 2. 14. 20:43

 

 

🚊 [문제]

 

2개의 수를 입력 받아 크기를 비교하여 등호 또는 부등호를 출력하는 프로그램을 작성하라.

 

 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

[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

복습 완료