Problem C: 求10个数中的最大值和最小值(for循环或while循环)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:22 Solved:14

Description

求10个数中的最大值和最小值

Input

输入10个整数(数的取值范围是-2147483648~2147483647)

Output

输出2行:第一行是10个数中的最大值;第二行是10个数中的最小值

Sample Input Copy

1 2 3 4 5 16 7 8 -9 0

Sample Output Copy

16
-9

HINT

最大数的变量名称可以定义为max
最小数的变量名称可以定义为min

Source/Category