iphone - 四舍五入大整数-objective-c
<p><p>我如何在 Objective-c 中实现以下目标?</p>
<p>从 0 到 999,999,999 之间的整数 x 开始。
并以整数 y 结尾。</p>
<p>如果 x 介于 0 和 9999 之间,则 y = x
否则,x 会变成 45k(代表 45,000)或 998m(代表 9.98 亿)。换句话说,使用字符“k”和“m”以保持 y 小于或等于 4 个字符的长度。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>不圆而简单地切断:</p>
<pre><code>NSString *text;
if (x >= 1000000) text = ;
else if (x >= 1000) text = ;
else text = ;
</code></pre>
<p>舍入解:</p>
<pre><code>NSString *text;
if (x >= 1000000) text = ;
else if (x >= 1000) text = ;
else text = ;
</code></pre>
<p>如果您想要更高的精度,请使用 <code>float</code> 和 <code>%.1f</code> 等。</p></p>
<p style="font-size: 20px;">关于iphone - 四舍五入大整数-objective-c,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/4709015/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/4709015/
</a>
</p>
页:
[1]