A program that read a value n & display cos inverse(n) in Cpp.

#include<stdio.h>
#include<conio.h>
#include<iostream.h>
#include<math.h>

void main()
{   
    float v,inverse;
    clrscr();
    cout<<"Enter any value = ";
    cin>>v;
    if(v>1)

        cout<<"Its Impossible; Please Enter number less than 1.";
    else
    {
        inverse=acos(v)*180/M_PI;
        cout<<"\nCos Inverse("<<v<<") = "<<inverse;
    }
    getch();
}


////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........