【问题描述】输入若干成绩值,以回车作为输入结束。输出最高的三个成绩值,以及最大值和最小值。
【输入形式】"Input a score(end of enter):"
【输出形式】"Top 3 scores:" "max={},min={}"
【输入输出示例】
```python
Input a score(end of enter):9
Input a score(end of enter):4.6
Input a score(end of enter):8.2
Input a score(end of enter):1
Input a score(end of enter):4
Input a score(end of enter):7
Input a score(end of enter):
Top 3 scores:
9
8.2
7
max=9,min=1
```