#include <iostream>
#include <cmath>
int main()
{
float
X,
Y;
std::cout << "Введите значение переменной X: ";
std::cin >> X;
Y = 3*( (sqr( sin(X) ) * sin(X) ) + ( sqr( cos(2*X) ) / 2) );
std::cout << setprecision(3) << "Результат = " << Y;
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
#include <cmath>
int main()
{
float
X,
Y;
std::cout << "Введите значение переменной X: ";
std::cin >> X;
Y = 3*( (sqr( sin(X) ) * sin(X) ) + ( sqr( cos(2*X) ) / 2) );
std::cout << setprecision(3) << "Результат = " << Y;
return 0;
}
#include <cmath>
using namespace std;
int main( )
{
double x, y;
cout << "Vvedite x: ";
cin >> x;
y = 3*(pow(sin(x), 3) + 0.5*pow(cos(2*x),2));
cout << "y = " << y << endl;
return 0;
}
Пример:
x = 0
y = 1.5