Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

what is the our put if a = 2 b = 3 c = 4 ? include / / for cout using namespace std; /

what is the our put if a =2 b=3 c=4?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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Organizing Information Digital And Information Literacy

Authors: Greg Roza

1st Edition

1448805929, 978-1448805921

More Books

Students also viewed these Databases questions