Odpowiedź:
base = float(input("Podaj długość podstawy trójkąta: "))
height = float(input("Podaj wysokość trójkąta: "))
area = 0.5 * base * height
print("Pole trójkąta wynosi:", area)
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
base = float(input("Podaj długość podstawy trójkąta: "))
height = float(input("Podaj wysokość trójkąta: "))
area = 0.5 * base * height
print("Pole trójkąta wynosi:", area)