Quick actions

cmd+k|ctrl+k

Navigation

Languages

27

Snippet info

Language

Cpp

Visibility

public

Author

misha127831

Created

2018-10-02T06:02:26Z

Updated

2018-10-02T06:02:26Z

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

int main() {
    double x, z;
      cin>>x;
      if (x!=0){
       cout<<"Нет решения";
      }
       else{
           z=pow(cos(sin(1/x)),2);
    cout << z;
       }
    return z;
}
INFO