📄 fnother.html
字号:
<html><head> <title>BT2IL::Float Number::Other 其它数学函数</title> <link rel="stylesheet" href="bt2il.css" type="text/css"></head><body> <h1>BT²IL Float Number 其它函数</h1> <p>这些函数只能比较随机的补充了。</p> <h3>阶乘</h3> <p>阶乘 factorial。</p> <pre class="example-code">// factorialbtil::fn::factorial<N>::value // N 的阶乘factorial<101>::value::f_val == 9.42594775983835e+159;</pre> <h3>等比数列求和</h3> <p>等比数列求和,A<sub>0</sub>=a, A<sub>n+1</sub>=A<sub>n</sub>*q。</p> <pre class="example-code">// geometricbtil::fn::geometric<a, q, N>::value // 数列 a*q^n 的前 N 项和geometric<one, two, 10>::value;:f_val == 1023;</pre> </body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -