Помогите, очень нужен код в С++
Ответ:
#include
int main()
{
double a, b, x, y;
// Русский язык в консоли
setlocale(LC_ALL, "Russian");
std::cout
std::cin >> a;
std::cin >> b;
std::cin >> x;
y = (2.5*x-tan(x)) / (a*x*sqrt(b*x));
return 0;
}