[백준]2562번 최댓값
카테고리: Baekjoon
Problem Statement
Solution
inList = []
for i in range(9):
a = int(input())
inList.append(a)
print(max(inList))
print(inList.index(max(inList))+1)
- 주의할 것점
- List의 Index는 0번부터 시작한다.
카테고리: Baekjoon
inList = []
for i in range(9):
a = int(input())
inList.append(a)
print(max(inList))
print(inList.index(max(inList))+1)
댓글 남기기