1. <legend id='RsObE'><style id='RsObE'><dir id='RsObE'><q id='RsObE'></q></dir></style></legend>

    <tfoot id='RsObE'></tfoot>

    <small id='RsObE'></small><noframes id='RsObE'>

    <i id='RsObE'><tr id='RsObE'><dt id='RsObE'><q id='RsObE'><span id='RsObE'><b id='RsObE'><form id='RsObE'><ins id='RsObE'></ins><ul id='RsObE'></ul><sub id='RsObE'></sub></form><legend id='RsObE'></legend><bdo id='RsObE'><pre id='RsObE'><center id='RsObE'></center></pre></bdo></b><th id='RsObE'></th></span></q></dt></tr></i><div id='RsObE'><tfoot id='RsObE'></tfoot><dl id='RsObE'><fieldset id='RsObE'></fieldset></dl></div>

      <bdo id='RsObE'></bdo><ul id='RsObE'></ul>

    1. 将数字四舍五入到最接近的 3 的倍数

      时间:2023-09-07

        <tfoot id='zlegZ'></tfoot>
        • <i id='zlegZ'><tr id='zlegZ'><dt id='zlegZ'><q id='zlegZ'><span id='zlegZ'><b id='zlegZ'><form id='zlegZ'><ins id='zlegZ'></ins><ul id='zlegZ'></ul><sub id='zlegZ'></sub></form><legend id='zlegZ'></legend><bdo id='zlegZ'><pre id='zlegZ'><center id='zlegZ'></center></pre></bdo></b><th id='zlegZ'></th></span></q></dt></tr></i><div id='zlegZ'><tfoot id='zlegZ'></tfoot><dl id='zlegZ'><fieldset id='zlegZ'></fieldset></dl></div>

          <small id='zlegZ'></small><noframes id='zlegZ'>

              • <bdo id='zlegZ'></bdo><ul id='zlegZ'></ul>

                <legend id='zlegZ'><style id='zlegZ'><dir id='zlegZ'><q id='zlegZ'></q></dir></style></legend>
                  <tbody id='zlegZ'></tbody>
                本文介绍了将数字四舍五入到最接近的 3 的倍数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                嘿,我将如何将一个数字四舍五入到最接近 3 的倍数?

                Hay, how would i go about rounded a number up the nearest multiple of 3?

                25 would return 27
                1 would return 3
                0 would return 3
                6 would return 6
                

                谢谢

                推荐答案

                    if(n > 0)
                        return Math.ceil(n/3.0) * 3;
                    else if( n < 0)
                        return Math.floor(n/3.0) * 3;
                    else
                        return 3;
                

                这篇关于将数字四舍五入到最接近的 3 的倍数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:Javascript 中的位与 64 位整数 下一篇:javascript中的非常大的数字

                相关文章

                最新文章

                  <bdo id='JT6TV'></bdo><ul id='JT6TV'></ul>
              • <small id='JT6TV'></small><noframes id='JT6TV'>

                  <i id='JT6TV'><tr id='JT6TV'><dt id='JT6TV'><q id='JT6TV'><span id='JT6TV'><b id='JT6TV'><form id='JT6TV'><ins id='JT6TV'></ins><ul id='JT6TV'></ul><sub id='JT6TV'></sub></form><legend id='JT6TV'></legend><bdo id='JT6TV'><pre id='JT6TV'><center id='JT6TV'></center></pre></bdo></b><th id='JT6TV'></th></span></q></dt></tr></i><div id='JT6TV'><tfoot id='JT6TV'></tfoot><dl id='JT6TV'><fieldset id='JT6TV'></fieldset></dl></div>

                1. <legend id='JT6TV'><style id='JT6TV'><dir id='JT6TV'><q id='JT6TV'></q></dir></style></legend>
                  <tfoot id='JT6TV'></tfoot>