Quick actions

cmd+k|ctrl+k

Navigation

Languages

19

Snippet info

Language

Cpp

Visibility

public

Author

brodsm1487

Created

2018-09-26T07:27:29Z

Updated

2018-09-26T07:27:39Z

#include <iostream>
#include <cmath>
using namespace std;

int main() {
    float x,y,a,b;
    cin >>x>>y;
    a=(18*y-1);
    if (a==0)
     cout << "Решений нет";
    else { b=(exp(x)-(y*y+12*x*y-3*pow(x,2))/a);
        cout << b;
    }
    return 0;
}
INFO