1.定义一个getMAX函数,返回三个数(从键盘输入的整数)中的最大值。
例如:
请输入第一个整数:10
请输入第二个整数:15
请输入第三个整数:20
其中最大值为:20
def getMax():
a=int(input("请输入一个数为:"))
b=int(input("请输入一个数为:"))
c=int(input("请输入一个数为:"))
max=0
if a>b:
max=a
else:
max=b
if max>c:
return "其中最大值为:"+str(max)
else:
return "其中最大值为:"+str(c)
maxx=getMax()
print(maxx)
2.编写函数,判断输入的三个数字是否能够成三角形。
法一:
def jiao(a,b,c):
if a+b>c and a+c>b and b+c>a:
return "能够成三角形"
else:
return "不能构成三角形"
f=jiao(3,4,5)
print(f)
法二:
def jiao():
a=int(input("请输入一个数为:"))
b=int(input("请输入一个数为:"))
c=int(input("请输入一个数为:"))
if a+b>c and a+c>b and b+c>a:
return "能够成三角形"
else:
return "不能构成三角形"
f=jiao()
print(f)