728x90
반응형
https://www.acmicpc.net/problem/2752
구현 언어: 파이썬
a = list(map(int, input().split()))
for i in range (0,3):
for j in range (i,3):
if a[i] >= a[j]:
tmp = a[i]
a[i] = a[j]
a[j] = tmp
print(a[0], a[1], a[2])
시도 횟수: 1
구현 포인트:
728x90
반응형
'Archive > BOJ' 카테고리의 다른 글
백준 1152번: 단어의 개수 (0) | 2021.02.03 |
---|---|
백준 5532번: 방학 숙제 (0) | 2021.02.03 |
백준 2525번: 오븐시계 (0) | 2021.02.03 |
백준 2480번: 주사위 세개 (0) | 2021.02.03 |
백준 1297번: TV 크기 (0) | 2021.02.03 |