Module: (Python) 子例程:过程和函数 - 2


Problem

6/8

两个数字中的最小值

Problem

编写一个计算两个数中最小值的函数。使用此函数,编写一个函数来查找三个数字中的最小值。
输入: 输入字符串包含三个以空格分隔的整数。
输出: 程序应打印给定数字中的最小值。
例子 <头> <日># <正文>

输入 输出
1 1 2 3 1
Write the program below
# функция минимум из двух чисел
def  m2 (a, b):   
# функция минимум из трех чисел
def  m3 (a, b, c):   
a, b, c = map(int, input().split())
print (m3(a, b, c))   

     

Program check result

To check the solution of the problem, you need to register or log in!