Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- using namespace std;
- double x;
- // int a, b, c;
- void input() {
- cout << "Enter x: ";
- cin >> x;
- // cout << "Enter a: ";
- // cin >> a;
- // cout << "Enter b: ";
- // cin >> b;
- // cout << "Enter c: ";
- // cin >> c;
- }
- double function(const double x) {
- double m_sin = sin((x * M_PI) / 180);
- double m_cos = cos(2 * ((x * M_PI) / 180));
- /* функция cos принимает в качестве параметра угол в радианах.
- * А по условию угол дан в градусах.
- * "(x * M_PI) / 180" - перевод градусов в радианы */
- return m_sin * m_sin + m_cos * m_cos;
- }
- int main() {
- input();
- // while (b < a) {
- // cout << "Input range again:\n";
- // input();
- // }
- cout << "Result = " << function(x);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement