-->
当前位置:首页 > 题库

PROGRAMMING:Find the subscript of the largest element in the list (higher education society, exercise 4-7 of Python programming foundation and application)

Luz5年前 (2021-05-10)题库322
Enter an integer list to find the subscript of the largest element in the integer list. If the number of the largest element exceeds 1, print out all subscripts.
###Input format:
Number 1, number 2, number 3,..., number n
###Output format:
Subscript 1
Subscript 2
...
Subscript k
###Input example:
```in
3,2,3
```
###Output example:
```out
0
two
```







answer:If there is no answer, please comment