How to round floating point to nearest and convert to int in Swift

1 Answer

0 votes
var f = 3.2
var n = Int(f.rounded(.toNearestOrEven))
print(n)

f = 3.5
n = Int(f.rounded(.toNearestOrEven))
print(n)




/*
run:

3
4

*/

 



answered Feb 8, 2021 by avibootz

Related questions

...