Problem2525--函数练习 - 输出三个数中的最大值

2525: 函数练习 - 输出三个数中的最大值

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

给定三个正整数,请打印其中最大的值。
要求:编写函数实现,函数接收三个参数,返回其中的最大值。

Sample Input Copy

10 18 5

Sample Output Copy

18

Source/Category

函数