Самостоятельная работа 2 №3
#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