👤

Stwórz program w python, który liczy pole trójkąta równobocznego, klasa 8
a=int(input("Podaj bok a:"))


Odpowiedź :

Odpowiedź:

import math

a=int(input("Podaj bok a:"))

P=(a*a*(math.sqrt(3))/4)

print(P)

Go Studier: Inne Pytanie