定义一个函数,求三个正整数的最大值。
时间: 2024-03-06 17:50:47 浏览: 153
求两个正整数m、n的最大公约数 Java语言实现
5星 · 资源好评率100%
可以使用Python内置函数`max()`来求三个正整数的最大值。
示例代码如下:
```python
def max_of_three(a, b, c):
return max(a, b, c)
# example usage
print(max_of_three(1, 2, 3)) # Output: 3
print(max_of_three(10, 5, 8)) # Output: 10
print(max_of_three(100, 50, 200)) # Output: 200
```
该函数接收三个参数 a、b 和 c,使用内置函数`max()`返回它们的最大值。在示例中,我们分别传入不同的参数测试函数,输出它们的最大值。
阅读全文