Code:
{
//arcsine
cout << "Enter a degree to calculate for arcsine: (Choice should be between -1 and 1.) ";
cin >>num1;
result = asin (num1) * 180.00 / pi;
if (num1 >= -1)
{
cout << " The arcsine of " << num1 << " comes out to be " << result << " degrees." << endl;
}
else
{
cout << "Your choice is uncomputable in this equation. \n";
}
}

