给定三个数字a b和c, 任务是我们必须找到给定数字中的最大元素
【Python编程(计算三个数最大值的3中方法)】例子:
Input : a = 2, b = 4, c = 3
Output : 4 Input : a = 4, b = 2, c = 6
Output : 6
方法1(简单)
# Python program to find the largest
# number among the three numbersdef maximum(a, b, c):if (a >
= b) and (a >
= c):
largest = aelif (b >
= a) and (b >
= c):
largest = b
else :
largest = creturn largest# Driven code
a = 10
b = 14
c = 12
print (maximum(a, b, c))
输出如下:
14
方法2(使用列表)
用n1, n2和n3初始化三个数字
将三个数字加到列表lst = [n1, n2, n3]。
使用max()函数查找最大数max(lst)。
最后, 我们将打印最大数量
# Python program to find the largest number
# among thethree numbers using library function def maximum(a, b, c):
list = [a, b, c]
return max ( list )# Driven code
a = 10
b = 14
c = 12
print (maximum(a, b, c))
输出如下:
14
方法3(使用max函数)
# Python program to find the largest number
# among thethree numbers using library function # Driven code
a = 10
b = 14
c = 12
print ( max (a, b, c))
输出如下:
14
首先, 你的面试准备可通过以下方式增强你的数据结构概念:Python DS课程。
推荐阅读
- 计算从一个字符串转为另一个字符串的最小编辑次数| DP-5
- 巧妙处理电脑键盘右边的数字键失灵问题
- 注重笔记本保养 经常见故障区分及处理
- 你所不熟悉的显卡各种后缀字母的意义
- 高手详细说明液晶显示器的维护常识
- CPU选购秘籍 简单一招辨别原装与封盒
- 3步骤简单处理开机显示NTLDR is mis的问题
- 菜鸟购买电脑必读 小心这些误区
- 详细说明超实用低级格式化拯救硬盘办法