Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <math.h>
- using namespace std;
- int main ()
- {
- int x,y, e = 1;
- double M;
- cout << "Enter the number x: ";
- cin >> x;
- cout << "Enter the number y: ";
- cin >> y;
- M = (1.17 * log(sqrt(1 + pow(cos(1),2) * y))) / (pow(e,y) + pow(sin(1),2) * x);
- cout << M;
- system ("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement