C++
#include <iostream>
#include <math.h>
using namespace std;
int main() {
setlocale(LC_ALL, "RUS");
float a, x, y;
cout << "Введите значение х: ";
cin >> x;
cout << "Введите значение a: ";
cin >> a;
y = 0.5 * x * x / (a + x);
cout << "y = " << y << endl;
}
a, x = 1, 1
y = (0.5**2) / (a+x)
print(y)
C++
#include <iostream>
#include <math.h>
using namespace std;
int main() {
setlocale(LC_ALL, "RUS");
float a, x, y;
cout << "Введите значение х: ";
cin >> x;
cout << "Введите значение a: ";
cin >> a;
y = 0.5 * x * x / (a + x);
cout << "y = " << y << endl;
}
a, x = 1, 1
y = (0.5**2) / (a+x)
print(y)