[백준]2562번 최댓값

Date:     Updated:

카테고리:

Problem Statement

1

Solution

inList = []
for i in range(9):
    a = int(input())
    inList.append(a)
print(max(inList))
print(inList.index(max(inList))+1)
  • 주의할 것점
    1. List의 Index는 0번부터 시작한다.

Baekjoon 카테고리 내 다른 글 보러가기

댓글 남기기