Quick actions

cmd+k|ctrl+k

Navigation

Languages

15

Snippet info

Language

Cpp

Visibility

public

Author

misha127831

Created

2018-09-26T15:31:05Z

Updated

2018-10-02T05:12:40Z

#include <iostream>
#include <cmath>

using namespace std;

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