#include #include using namespace std; int main () { double d3,arc2;; d3 = 3.141592 ; // PI value cout<<"\n---working with math acos----"; //degrees to radian conversion) // radians = degrees * PI /180 arc2 = acos(.5) * 180/d3; cout<<"\n acos(.5) * 180/d3 angle " << arc2; arc2 = acos(.45) * 180/3.14159; cout<<"\n acos(.45) * 180/d3 angle " << arc2; cout << "\n --- asin in a for + loop ---"; double j =1.0; for( int i =0; i < 10; i++) { arc2 = asin(j) * 180/3.14159; cout <<"\n sin "<<"\t\b "<= 0.00; i-=0.15) { arc2 = asin(i) * 180/3.14159; cout <<"\n sin "<<"\t\b "<