c4cours1.py

Created by manuel-eleve-tle-specialite-indice2020

Created on May 29, 2020

116 Bytes


def seuil_1(A):

    u=-7

    n=0

    while u<=A:

        n=n+1

        u=2*n**3-7

    return n