#include <iostream>
#include <cmath>
using namespace std;
int main() {
double x, y, f;
cout << "x=";
cin >> x;
cout << "y=";
cin >> y;
f = pow(2.718, -cos(sqrt(x/y)));
cout << "f(x,y)= " << f;
return 0;
}
Либо же с использованием директивы #define:
#define _USE_MATH_DEFINES
f = pow(M_E, -cos(sqrt(x/y)));
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double x, y, f;
cout << "x=";
cin >> x;
cout << "y=";
cin >> y;
f = pow(2.718, -cos(sqrt(x/y)));
cout << "f(x,y)= " << f;
return 0;
}
Либо же с использованием директивы #define:
#define _USE_MATH_DEFINES
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double x, y, f;
cout << "x=";
cin >> x;
cout << "y=";
cin >> y;
f = pow(M_E, -cos(sqrt(x/y)));
cout << "f(x,y)= " << f;
return 0;
}