Advertisement
medajibka

2.3

Apr 18th, 2022
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.91 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3.  
  4. using namespace std;
  5. double x;
  6. // int a, b, c;
  7.  
  8. void input() {
  9.     cout << "Enter x: ";
  10.     cin >> x;
  11. //    cout << "Enter a: ";
  12. //    cin >> a;
  13. //    cout << "Enter b: ";
  14. //    cin >> b;
  15. //    cout << "Enter c: ";
  16. //    cin >> c;
  17. }
  18.  
  19. double function(const double x) {
  20.     double m_sin = sin((x * M_PI) / 180);
  21.     double m_cos = cos(2 * ((x * M_PI) / 180));
  22.    
  23.     /* функция cos принимает в качестве параметра угол в радианах.
  24.      * А по условию угол дан в градусах.
  25.      * "(x * M_PI) / 180" - перевод градусов в радианы */
  26.  
  27.     return m_sin * m_sin + m_cos * m_cos;
  28. }
  29.  
  30. int main() {
  31.  
  32.     input();
  33.  
  34. //    while (b < a) {
  35. //        cout << "Input range again:\n";
  36. //        input();
  37. //    }
  38.  
  39.     cout << "Result = " << function(x);
  40.  
  41.     return 0;
  42. }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement