fix warnings(markdown rebuild)

This commit is contained in:
wang904
2022-08-17 07:54:33 +08:00
parent b4695bdb72
commit a1d3af9201
14 changed files with 86 additions and 89 deletions

View File

@ -0,0 +1,21 @@
# math.h
## 简介:
数学库
## 函数列表:
``double fabs(double x)`` : 返回 x 的绝对值
``float fabsf(float x)`` : 返回 x 的绝对值
``long double fabsl(long double x)``: 返回 x 的绝对值
``double round(double x)`` 四舍五入 x
``float roundf(float x)`` 四舍五入 x
``long double roundl(long double x)`` 四舍五入 x
``int64_t pow(int64_t x,int y)`` 返回 x 的 y 次方