Answers for "swift 5 round float to 2 decimal places"

5

format decimal place swift

let tip: Double = 15.2847320
let tipText: String = String(format: "%.2f", tip)
// %.2f for two decimal places
Posted by: Guest on March-14-2020
1

xcode truncate number of decimal places of double

//Multiply the double you want to round by 10^(the number of decimal place precision you want), use the "round()" function, then divide by that number again

let x = 1.23556789
let y = Double(round(1000*x)/1000)
print(y)  // 1.236
Posted by: Guest on August-30-2020

Code answers related to "swift 5 round float to 2 decimal places"

Code answers related to "Swift"

Browse Popular Code Answers by Language