Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def square(a, h):
- return a * h
- def compare(s1, s2):
- if s1 < s2:
- return 1
- elif s1 > s2:
- return 1
- else:
- return 0
- a1, h1 = float(input("Укажите длину основания 1-го параллелограмма: ")), float(input("Укажите высоту 1-го параллелограмма: "))
- a2, h2 = float(input("Укажите длину основания 2-го параллелограмма: ")), float(input("Укажите высоту 2-го параллелограмма: "))
- s1, s2 = square(a1, h1), square(a2, h2)
- res = compare(s1, s2)
- if res == 1:
- print("Площадь 1-го меньше")
- elif res == 2:
- print("Площадь 2-го меньше")
- else:
- print("Обе площади равны")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement