Algo mas me hace falta talvez ya con esto puedan ayudarme!!!!
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int a, b, x;
cout << "Ingrese el Valor de a: \n";
cin >> a;
cout << "Ingrese el Valor de b: \n";
cin >> b;
if(a !=0){
x= (-1*b) / a ;
cout<<"La solucion de la ecuacion es : "<< x <<endl;
}
else if (b !=0 )
cout<<"solucion imposible";
else
cout<<"solucion indeterminada";
return 0;
}
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int a, b, x;
cout << "Ingrese el Valor de a: \n";
cin >> a;
cout << "Ingrese el Valor de b: \n";
cin >> b;
if(a !=0){
x= (-1*b) / a ;
cout<<"La solucion de la ecuacion es : "<< x <<endl;
}
else if (b !=0 )
cout<<"solucion imposible";
else
cout<<"solucion indeterminada";
return 0;
}