Quick actions

cmd+k|ctrl+k

Navigation

Languages

19

Snippet info

Language

Cpp

Visibility

public

Author

andrusus.korotkovus

Created

2018-10-02T07:27:42Z

Updated

2018-10-04T02:16:14Z

#include <iostream>
#include <cmath>

using namespace std;

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