-
2562_Python // 최댓값IT_Baekjoon 단계별로 풀어보기/1차원 배열 2020. 1. 8. 01:40
Python
import sys a = list() max = int(0) c = int() for i in range(9) : a.append(int(sys.stdin.readline())) if(a[i]>max) : max = a[i] c = i+1 print(max) print(c)
===
'IT_Baekjoon 단계별로 풀어보기 > 1차원 배열' 카테고리의 다른 글
1546_Python // 평균 (0) 2020.01.08 3052_Python // 나머지 (0) 2020.01.08 2577_Python // 숫자의 개수 (0) 2020.01.08 2920_Python // 음계 (0) 2020.01.08 10818_Python // 최소,최대 (0) 2020.01.08