2183: 最高最低分
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:13
Solved:6
Description
输入n个同学的分数( 0~100),找出最高分和最低分。
Input
第1行:输入n;
第2行:输入n个非负整数(0~100),表示每个同学的分数。
第2行:输入n个非负整数(0~100),表示每个同学的分数。
Output
输入每个同学的分数,最高分和最低分增加星号作为标记。
Sample Input Copy
6
98 78 65 78 88 98
Sample Output Copy
98* 78 65* 78 88 98*