math.h

来自「eC++编译器源码」· C头文件 代码 · 共 27 行

H
27
字号
#pragma math

float   acos(float x);
float   asin(float x);
float   atan(float x);
float   atan2(float y, float x);
float   ceil(float x);
float   cos(float x);
float   cosh(float x);
float   exp(float x);
float   fabs(float x);
float   floor(float x);
float   fmod(float y, float x);
float   frexp(float x, int &p);
long    labs(long l);
float   ldexp(float x, int y);
float   log(float x);
float   log10(float x);
float   modf(float x, float &p);
float   pow(float x, float y);
float   sin(float x);
float   sinh(float x);
float   sqrt(float x);
float   tan(float x);
float   tanh(float x);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?