Advertisement
Ravenbvutt

Untitled

Sep 30th, 2017
10,443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4. int main ()
  5. {
  6. int x,y, e = 1;
  7. double M;
  8.  
  9. cout << "Enter the number x: ";
  10. cin >> x;
  11. cout << "Enter the number y: ";
  12. cin >> y;
  13.  
  14. M = (1.17 * log(sqrt(1 + pow(cos(1),2) * y))) / (pow(e,y) + pow(sin(1),2) * x);
  15.  
  16. cout << M;
  17.  
  18. system ("pause");
  19. return 0;
  20.  
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement