#include
#include
#include
int main()
{
float
x, y;
std::cout << "Введите значение переменной X: ";</p>
std::cin >> x;
y = 3*(pow(sin(x), 3) + (pow(cos(2*x), 2)/2));
std::cout << std::endl << "Значение выражения равно = " << std::setprecision(3) << y;</p>
return 0;
}