Quick actions

cmd+k|ctrl+k

Navigation

Languages

9

Snippet info

Language

Cpp

Visibility

public

Author

andrusus.korotkovus

Created

2018-10-09T03:00:21Z

Updated

2018-10-09T05:24:13Z

#include <iostream>
#include <cmath>
using namespace std;
int main()

{
	
	int x, y;
	cin >> x;
	if (x == 0 || cos(x) == 0){
	    cout << "нет решения";	
	}
	else{
		y = (log(abs(cos(x)))) / (log(1 + x*x));
		cout << y;
	}

	return 0;
}
INFO