Quick actions

cmd+k|ctrl+k

Navigation

Languages

17

Snippet info

Language

Cpp

Visibility

public

Author

brodsm1487

Created

2018-09-26T07:26:32Z

Updated

2018-09-26T07:26:32Z

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

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