Quick actions

cmd+k|ctrl+k

Navigation

Languages

Lab 2(9)

Snippet info

Language

Cpp

Visibility

public

Author

buteskul5.6

Created

2018-09-26T09:40:20Z

Updated

2018-12-20T21:53:40Z

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

{
	
	float x, y=0;
	cout << "vvedite x";
	cin >> x;
	
	if (x == 0)
	{
	    cout << endl << "net resenia";	
	}
	
	else
	{
		y += (log(abs(cos(x)))) / (log(1 + x*x));
		
		cout << endl << y;
	}

	return 0;
}
INFO