[加法]
<p><strong>方法签名:</strong> </p>
<p><code>math_add(number1, number2)</code></p>
<p><strong>简要描述:</strong> </p>
<ul>
<li>加法算数运算,不丢失精度</li>
</ul>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th style="text-align: left;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">number1</td>
<td style="text-align: left;">数字类型</td>
<td style="text-align: left;">加数1</td>
</tr>
<tr>
<td style="text-align: left;">number2</td>
<td style="text-align: left;">数字类型</td>
<td style="text-align: left;">加数2</td>
</tr>
</tbody>
</table>
<p><strong>返回值说明</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">类型</th>
<th style="text-align: left;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">数字类型</td>
<td style="text-align: left;">运算结果</td>
</tr>
</tbody>
</table>
<p><strong>使用例子</strong></p>
<pre><code>println math_add(11.333, 22.444);</code></pre>
<p><strong>输出结果</strong></p>
<pre><code>33.777</code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>无</li>
</ul>