Ответы
Ответ дал:
0
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
float x;
cout << "Enter your x: " << "\n";
cin >> x;
float y;
cout << "Enter your y: " << "\n";
cin >> y;
float z = sqrt(x * x - y) + (abs(x-y) / (2 * x));
cout << "z is " << z;
return 0;
}
Вас заинтересует
2 года назад
2 года назад
8 лет назад
9 лет назад