/* Root of ax + b = 0 */ #include #include #include using namespace std; int main(int argc, char *argv[]) {int i; double a, b, root; for (i=1; i<=3; i++) // for 3 equations { do { cout<<"Input the coefficients a, b of the equation."<> a >> b; } while (a==0); cout<< "Coefficients are "<