Question: what i s the out put ? #include / / for cout using namespace std; / / for the names used by C + +

what is the out put ?
#include // for cout
using namespace std; // for the names used by C++
void main(){
float a, b, c, d, e, f;
float x, y;
cout <<" Give a b c values: ";
cin >> a >> b >> c;
cout <<" Give d e f values: ";
cin >> d >> e >> f;
cout << a <<" x +"<< b <<" y ="<< c << endl;
cout << d <<" x +"<< e <<" y ="<< f << endl;
x =(c * e - b * f)/(a * e - b * d);
y =(a * f - c * d)/(a * e - b * d);
cout <<" x ="<< x <<" y ="<< y << endl;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!