Quick actions

cmd+k|ctrl+k

Navigation

Languages

Самостоятельная работа 2 №3 

Snippet info

Language

Cpp

Visibility

public

Author

dimonkoko1

Created

2018-09-15T14:58:30Z

Updated

2018-09-29T14:37:12Z

#include <iostream>
#include <cmath>

using namespace std;

int main() {
    //////////////////////////////// Задание №3 Вариант 9 //////////////////////////////////////////
    int	x;
	double ans;

	cout << "Введите x:" << endl;
	cin >> x;

	ans = log(abs(cos(x)))/log(1 + pow(x,2));
	cout << "Ответ:" << ans << endl;
    
    return 0;
}
INFO