Quick actions

cmd+k|ctrl+k

Navigation

Languages

11

Snippet info

Language

Cpp

Visibility

public

Author

misha127831

Created

2018-09-25T17:27:11Z

Updated

2018-10-09T06:21:51Z

#include <iostream>
#include <cmath>

using namespace std;

int main() {
    
    double x, y, z;
    cin>>x>>y;
    if (x==0){
        cout<<"нет решений";
    }
    else{
        z = pow((1+(1/(x*x))),x) -(12*(x*x)*y);
        cout<<z;
    
    
    return .0;
    }
}
INFO