#include <iostream>
#include <cmath>
#include <iomanip>
int main()
{
float
x, y;
std::cout << "Введите значение переменной X: ";
std::cin >> x;
y = 3*(pow(sin(x), 3) + (pow(cos(2*x), 2)/2));
std::cout << std::endl << "Значение выражения равно = " << std::setprecision(3) << y;
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
#include <cmath>
#include <iomanip>
int main()
{
float
x, y;
std::cout << "Введите значение переменной X: ";
std::cin >> x;
y = 3*(pow(sin(x), 3) + (pow(cos(2*x), 2)/2));
std::cout << std::endl << "Значение выражения равно = " << std::setprecision(3) << y;
return 0;
}