0
Write the code for sinx
sin x =opp/hyp
3 Answers
+ 2
#include <iostream.h>
void main(){
double sinx, hyp, opp;
cout<<"Enter the hypotenuse";
cin>>hyp;
cout<<"Enter the side opposite to angle;"
cin>>opp;
sinx=opp/hyp;
cout<<"sine of the angle is";<<sinx;
}
0
thanks Sandra for your help
0
sorry I mean sandeep



