write a programme to find quadratic equation in python
Answers
Answered by
2
Answer:
This program computes roots of a quadratic equation when coefficients a, b and c are known.
To understand this example, you should have the knowledge of following Python programming topics:
Python Data Types
Python Input, Output and Import
Python Operators
The standard form of a quadratic equation is:
ax2 + bx + c = 0, where
a, b and c are real numbers and
a ≠ 0
Explanation:
PLEASE MARK MY ANSWER AS BRAINLIEST ANSWER
Attachments:
Similar questions