⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fnother.html

📁 浮点数基本运算 浮点数的基本运算主要有四则运算、符号处理、大小比较
💻 HTML
字号:
<html><head>  <title>BT2IL::Float Number::Other 其它数学函数</title>  <link rel="stylesheet" href="bt2il.css" type="text/css"></head><body>  <h1>BT&sup2;IL Float Number 其它函数</h1>  <p>这些函数只能比较随机的补充了。</p>  <h3>阶乘</h3>  <p>阶乘 factorial。</p>  <pre class="example-code">// factorialbtil::fn::factorial&lt;N&gt;::value                      // N 的阶乘factorial&lt;101&gt;::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&lt;a, q, N&gt;::value           // 数列 a*q^n 的前 N 项和geometric&lt;one, two, 10&gt;::value;:f_val == 1023;</pre>  </body></html>

⌨️ 快捷键说明

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