Ответ:
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;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
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;
}