Python Program to Find Roots of the Quadratic Equation

Поділитися
Вставка
  • Опубліковано 4 жов 2024

КОМЕНТАРІ • 14

  • @jesuisravi
    @jesuisravi 2 роки тому +4

    I greatly appreciate that you are thoughtful enough to magnify the code. So many coding videos effectively render themselves useless because the videographer presents us with a raw screen capture of some IDE or other. What are they thinking of, I wonder? I mean, this is UA-cam where if one finds a video that forces him/her to strain to follow, one simply and immediately finds another video that doesn't.

  • @1cookgs
    @1cookgs 2 роки тому +2

    Thank you for teaching me how to write code and yes, I would love to see more programming tutorials on solving Math problems. I love your videos!

  • @safetynetspov
    @safetynetspov 2 місяці тому

    This was really helpful, thank you!

  • @azidhossainayat
    @azidhossainayat 22 дні тому

    I love your this videos. Thanks you

  • @enamoradadelavidaa
    @enamoradadelavidaa 3 роки тому +1

    I love your videos, thank you!

  • @isabelcascabel1515
    @isabelcascabel1515 2 роки тому

    Thank you, this video safe my life.

  • @saiansh6640
    @saiansh6640 3 роки тому

    Thank you mam 🙇🏻

  • @lamelynch4895
    @lamelynch4895 3 роки тому

    It's a good video tbh

  • @RHRaZz
    @RHRaZz 2 роки тому

    how can i change imaginary NO. i/j in coding...??

  • @lamelynch4895
    @lamelynch4895 3 роки тому

    I even tried it

  • @DYANESHH
    @DYANESHH Рік тому

    import cmath
    a=int(input('Input of a(a!=0): '))
    b=int(input('Input of b : '))
    c=int(input('Input of c : '))
    d=(b**2)-(4*a*c)
    solution1=(-b+cmath.sqrt(d))/(2*a)
    solution2=(-b-cmath.sqrt(d))/(2*a)
    print('The Solutions Of The Quadratic Equation Are {} And {}'.format(solution1,solution2))
    if d>0:
    print('The Roots Are Real And Unequal')
    elif d==0:
    print('The Roots Are Real And Equal')
    elif d

    • @DYANESHH
      @DYANESHH Рік тому

      is this right mam?