[백준/파이썬] 12605번

민정·2023년 3월 5일
0

[백준/파이썬]

목록 보기
110/245
post-thumbnail

백준 12605번

문제

https://www.acmicpc.net/problem/12605

코드

testCase= int(input())

for i in range(testCase):
    result = list(map(str, input().split()))
    print("Case #%d: " %(i+1) , end = "")
    for j in range(len(result)-1, -1, -1):
        print(result[j], end = " ")

풀이

스페이스바를 기준으로 단어들을 나누어 result에 저장 후, 맨 뒷값부터 출력합니다.

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글