Round vs Floor vs Ceil : Swift

Suneet Agrawal
2 min readMay 14, 2023

Rounding up to the nearest Integer value functionality is something required a lot of times. Swift has a few inbuilt functions which can do the rounding up for us but they are a bit confusing. To decide when to use what, we need to understand which rounding function rounds up in which direction and which data types it can round up.
Let’s understand them in detail before comparing.

Before reading this blog, keep in mind that -3 is bigger than -4 and -3.5 is bigger than -3.51

This post was originally posted at https://agrawalsuneet.github.io/blogs/round-vs-floor-vs-ceil-swift/ and later reposted on Medium.

round()

  • round rounds up to the nearest Integer which can be above or below or even equal to the actual value.
  • In the case of a positive number, anything which is equal to or below x.49 will be converted to a lower number ie x.00 whereas anything which is equal to or more than x.5 will be converted to a higher number ie x+1.00
  • In the case of a negative number, anything which is equal to or below -x.5 will be converted to a lower number ie -x-1.00 whereas anything which is equal to or more than -x.49 will be converted to a higher number ie -x.00
print(round(3.00))
//this will print: 3

print(round(3.49))
//this will print: 3

print(round(3.5))
//this will print: 4

print(round(-3.00))
//this will print: -3

print(round(-3.49))
//this will print: -3

print(round(-3.5))
//this will print: -4

ceil()

  • ceil rounds up to the nearest Integer which can be equal to or above the actual value.
  • In the case of a positive number, anything between x.01 to x.99 will be converted to an upper number ie x+1.00 whereas x.00 will remain the same x.00
  • In the case of a negative number, anything between -x.01 to -x.99 will be converted to an upper number ie -x.00 whereas -x.00 will remain the same -x.00

Please continue reading at https://agrawalsuneet.github.io/blogs/round-vs-floor-vs-ceil-swift/

That’s all for now. You can read my other interesting blogs here or you can enjoy my games or apps listed here. Feel free to use my open-source Android components in your app listed here. Or drop an email, if you didn’t find what you are looking for and need some help.

--

--