Skip to content

Instantly share code, notes, and snippets.

@SOS77777
Created February 15, 2020 01:29
Show Gist options
  • Save SOS77777/96282342168d8eb105257bf1ef496ae4 to your computer and use it in GitHub Desktop.
Save SOS77777/96282342168d8eb105257bf1ef496ae4 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
cout <<"enter your degree \n" ;
double v ;
cin>>v ;
cout<<"the sin value is : \n"<<sin(v*(3.14/180))<<"\n" ;
cout<<"the sin value is : \n"<<sin(v*(3.14/180))<<"\n" ;
cout<<"the sin value is : \n"<<sin(v*(3.14/180))<<"\n" ;
return 0 ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment