#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "Rus");
double E, x;
cout << "Введите значение переменной x: ";
cin >> x;
E = exp(4 * x / 5) + 2 * sin(7 * log(x + 5 / 3)) - 6 / 11;
cout << E;
return 0;
}
#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "Rus");
double E, x;
cout << "Введите значение переменной x: ";
cin >> x;
E = exp(4 * x / 5) + 2 * sin(7 * log(x + 5 / 3)) - 6 / 11;
cout << E;
return 0;
}