#3313. C++-一维数组-输入n个整数(正整数), 存放至数组中,输出最大数(最后面)所在的下标
C++-一维数组-输入n个整数(正整数), 存放至数组中,输出最大数(最后面)所在的下标
Background
Description
输入n个整数(正整数), 存放至数组中,输出最大数所在的下标(如果出现最大数相等,则输出的下标为最后面的数值)
Format
Input
Output
Samples
5
9 5 8 10 3
3
5
9 10 8 10 3
3
Limitation
1s, 1024KiB for each test case.