C++ Programming/Code/Standard C Library/Math - Wikibooks, open books for an open world
If you don't want cmath you can write sin function it is; include using namespace std; double sin(double x) //sin function {return x-((x*x*x)/6.)+((x*x*x*x*x)/120.);} int main {double a; cin>>a; cout...