File tree 2 files changed +2
-2
lines changed
i18n/zh-cn/docusaurus-plugin-content-docs/current
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ print(area)
37
37
| Round to Nearest Integer | ` Math.round(x) ` | ` round(x) ` |
38
38
| Ceiling (Smallest Integer Not Less Than x) | ` Math.ceil(x) ` | ` math.ceil(x) ` |
39
39
| Floor (Largest Integer Not Greater Than x) | ` Math.floor(x) ` | ` math.floor(x) ` |
40
- | Exponential Operation | ` Math.pow(x, y) ` | ` pow(x, y) ` |
40
+ | Exponential Operation | ` Math.pow(x, y) ` | ` math. pow(x, y)` |
41
41
| Square Root | ` Math.sqrt(x) ` | ` math.sqrt(x) ` |
42
42
| Trigonometric Functions | ` Math.sin(x) ` 、` Math.cos(x) ` 、` Math.tan(x) ` 、` Math.asin(x) ` 、` Math.acos(x) ` 、` Math.atan(x) ` | ` math.sin(x) ` 、` math.cos(x) ` 、` math.tan(x) ` 、` math.asin(x) ` 、` math.acos(x) ` 、` math.atan(x) ` |
43
43
| Convert Degrees to Radians | - | ` math.radians(x) ` |
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ print(area)
37
37
| 四舍五入到最近的整数 | ` Math.round(x) ` | ` round(x) ` |
38
38
| 向上取整(不小于x的最小整数) | ` Math.ceil(x) ` | ` math.ceil(x) ` |
39
39
| 向下取整(不大于x的最大整数) | ` Math.floor(x) ` | ` math.floor(x) ` |
40
- | 指数运算 | ` Math.pow(x, y) ` | ` pow(x, y) ` |
40
+ | 指数运算 | ` Math.pow(x, y) ` | ` math. pow(x, y)` |
41
41
| 平方根 | ` Math.sqrt(x) ` | ` math.sqrt(x) ` |
42
42
| 三角函数 | ` Math.sin(x) ` 、` Math.cos(x) ` 、` Math.tan(x) ` 、` Math.asin(x) ` 、` Math.acos(x) ` 、` Math.atan(x) ` | ` math.sin(x) ` 、` math.cos(x) ` 、` math.tan(x) ` 、` math.asin(x) ` 、` math.acos(x) ` 、` math.atan(x) ` |
43
43
| 将角度转换为弧度 | - | ` math.radians(x) ` |
You can’t perform that action at this time.
0 commit comments