최댓값1 [알고리즘] 1. 반복문으로 가장 높은 산을 파괴(최댓값) https://www.codingame.com/ide/puzzle/the-descent import sys import math while True: max_h = 0 index = 0 for i in range(8): mountain_h = int(input()) if mountain_h > max_h: max_h = mountain_h index = i print(index) ★ 최댓값과 인덱스 변수를 루프 밖에 선언하면 계속 같은 인덱스만 출력한다. 그러므로 변수선언시 유심히 생각해본다. 2020. 8. 12. 이전 1 다음