second_degre.py

Created by julien-bernon

Created on October 06, 2020

440 Bytes

second_deg() retourne les solution d’une équation du type ax²+bx+c=0


def second_deg():
  a=float(input("a?"))
  b=float(input("b?"))
  c=float(input("c?"))
  delta=b**2-4*a*c
  print("Delta =",delta)
  if delta<0:
    print("Delta<0")
    print("Pas de solution")
    return False
  elif delta==0:
    print("solution conjuguée")
    s=-b/(2*a)
    print("s :",s)
  else:
    s1=(-b-delta**.5)/(2*a)
    s2=(-b+delta**.5)/(2*a)
    print("s1 :",s1)
    print("s2 :",s2)
    return (s1,s2)

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.