Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- using namespace std;
- //zadacha 2
- double reshenie(double m)
- {
- double r = pow((m + 1), 2) + 2 * pow((m / 4), 5) - 6 / (m + 11) + 4 * m;
- return r;
- }
- int main()
- {
- double m;
- cin >> m;
- cout << reshenie(m);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement