Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. def minmax(x,y,z):
  2.     a = (x,y,z)
  3.     a = input("Введите число")
  4.     def min_num(minmax):
  5.         a = (x,y,z)
  6.         if x > y and x > z:
  7.             print(x)
  8.         if y > x and y > z:
  9.             print(y)
  10.         if z > x and z > y:
  11.             print(z)
  12.     print("Вы ввели число {}".format(x))
  13.  
  14. minmax(10, 15, 16)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement