Ответ:
a = 1b = 2c = 3if a > b and a > c: print(a)elif b > c and b > a: print(b)elif c > a and c > b: print(c)
a = int(input("введіть перше число: "))
b = int(input("введіть друге число: "))
c = int(input("введіть третє число: "))
if (a > b and a > c):
print(a, " найбільше число")
elif(c > b and c > a):
print(c, " найбільше число")
else:
print(b, " найбільше число")
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a = 1
b = 2
c = 3
if a > b and a > c:
print(a)
elif b > c and b > a:
print(b)
elif c > a and c > b:
print(c)
Ответ:
a = int(input("введіть перше число: "))
b = int(input("введіть друге число: "))
c = int(input("введіть третє число: "))
if (a > b and a > c):
print(a, " найбільше число")
elif(c > b and c > a):
print(c, " найбільше число")
else:
print(b, " найбільше число")
Объяснение: