#include <iostream>
#include <cmath>
#include <stdio.h>
using namespace std;
void main()
{
setlocale(LC_ALL, "ru");
double Y = 1;
int X = 1;
cout << "Укажите X - ";
cin >> X;
Y = X * tan(X) - (1 / 3);
printf("%.2f", Y);
}
Объяснение:
#include <iostream>
#include <cmath>
#include <stdio.h>
using namespace std;
void main()
{
setlocale(LC_ALL, "ru");
double Y = 1;
int X = 1;
cout << "Укажите X - ";
cin >> X;
Y = X * tan(X) - (1 / 3);
printf("%.2f", Y);
}
Объяснение: