Відповідь:
#include <iostream>
#include <math.h>
using namespace std;
int main(){
int a,b,c;
cout << "Enter a: ";
cin >> a;
cout << "Enter b: ";
cin >> b;
cout << "Enter c: ";
cin >> c;
float x = (sqrt(abs(a + 1 )) - sqrt(abs(b - 2 ))) / (3 + (pow(c,3) / 2) + (pow(b,2) / 4));
float y = sqrt((a*b*c) / 3 + abs(a - b));
cout << "x = " << x << endl;
cout << "y = " << y << endl;
return 0;
}
Пояснення:
Відповідь:
#include <iostream>
#include <math.h>
using namespace std;
int main(){
int a,b,c;
cout << "Enter a: ";
cin >> a;
cout << "Enter b: ";
cin >> b;
cout << "Enter c: ";
cin >> c;
float x = (sqrt(abs(a + 1 )) - sqrt(abs(b - 2 ))) / (3 + (pow(c,3) / 2) + (pow(b,2) / 4));
float y = sqrt((a*b*c) / 3 + abs(a - b));
cout << "x = " << x << endl;
cout << "y = " << y << endl;
return 0;
}
Пояснення: