Skalei
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
int x;
double result;
cout << "Input your number" << endl;
cin >> x;
result = sqrt(1 - pow(sin(x),2));
cout << "Your result = " << result<< endl;
}INFO
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
int x;
double result;
cout << "Input your number" << endl;
cin >> x;
result = sqrt(1 - pow(sin(x),2));
cout << "Your result = " << result<< endl;
}