Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、2つのNSIntegerを13/4で除算し、結果を次の整数= 3に丸めるにはどうすればよいですか?
整数をfloatに変換し、整数に戻すサンプルをいくつか見ました。しかし、それを行うための最小限のコードで推奨される方法は何ですか?
仮定x >= 0してy > 0:
x >= 0
y > 0
切り捨てたい場合:x / y
x / y
切り上げたい場合:(x + y - 1) / y
(x + y - 1) / y
最も近い値に丸めたい場合:(x + y / 2) / y
(x + y / 2) / y