Quick actions

cmd+k|ctrl+k

Navigation

Languages

11.

Snippet info

Language

Cpp

Visibility

public

Author

brodsm1487

Created

2018-09-26T07:17:53Z

Updated

2018-09-26T07:22:40Z

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

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