Created
February 15, 2020 01:29
-
-
Save SOS77777/96282342168d8eb105257bf1ef496ae4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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