/* Errors Problem #3, Prof. Barimani's Programming I class Fall 2009 Fix all the errors: Purpose: To calculate the roots of the quadratic Equation -b (+ or -) sqrt (b*b - 4 * a * c) roots = ------------------------------------------------- 2a */ #include #include using namespace std; int main { a; b; and c int; cout<<"Please enter three integers for a, b, and c?\n"; cin<> There are no real roots; else; { x1 and x2 are float x1= -b + sqrt(disc) : 2a; x2= -b - sqrt(disc) : 2a cout<< root1= <<"x1" <