Functies

Sign in to test your solution.
def oppervlakte_van_driehoek( basis , hoogte ): opp = 0.5 * basis * hoogte print('Een driehoek met basis', basis, 'en hoogte', hoogte, 'heeft oppervlakte', opp ) print( oppervlakte_van_driehoek( 4.5 , 1.0 ) )