partie3_ex86.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

220 Bytes


def Conc_Max():
    x = 0
    C = x**3 - 12 * x**2 + 36 * x
    M = C
    for k in range(60):
        x = x + 0.1
        C = x**3 - 12 * x**2 + 36 * x
        if C > M:
            M = C
    return M