C++ Program to Find Roots of Quadratic Equation
Here you will get simple C++ program to find roots of quadratic equation ax2+bx+c=0. #include<iostream> #include<math.h> //to calculate square root using namespace std; int main() { float root1,root2,a,b,c,d,imaginaryPart,realPart; cout<<“Quadratic Equation is ax^2+bx+c=0”; cout<<“\nEnter values of a,b and c:”; cin>>a>>b>>c; d=(b*b)-(4*a*c); if(d>0) { cout<<“\nTwo real and distinct roots”; root1=(-b+sqrt(d))/(2*a); root2=(-b-sqrt(d))/(2*a); cout<<“\nRoots are “<<root1<<” and “<<root2; } …