c8ex106ap.py

Created by manuel-eleve-tle-techno-indice2020

Created on July 09, 2020

175 Bytes


from math import *

def rectangle():

    x=1

    u=0

    h=1/2

    for i in range(4):

        u=u+h*sqrt(x)

        x=x+h                 

    return u