Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab2

Snippet info

Language

Cpp

Visibility

public

Author

enifmankalinan

Created

2018-11-25T20:40:12Z

Updated

2018-12-03T21:26:59Z

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

{
	
	int x, y;
	cout << "vvedite x";
	cin >> x;
	if (x == 0 || cos(x) == 0)
	{
	    cout << "net resenia";	
	}
	else
	{
		y = (log(abs(cos(x)))) / (log(1 + x ^ 2));
		cout << y;
	}

	return 0;
}
INFO