Quick actions

cmd+k|ctrl+k

Navigation

Languages

15

Snippet info

Language

Cpp

Visibility

public

Author

brodsm1487

Created

2018-09-26T07:24:18Z

Updated

2018-09-26T07:25:45Z

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

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