gpt4 book ai didi

swift - 不适用于 swift 4 的 Float

转载 作者:行者123 更新时间:2023-11-30 11:54:15 25 4
gpt4 key购买 nike

let value:Float = 5.678434let roundedValue = round(value * 100) / 100

roundedValue 浮点 5.6784339

如何获得 5.67 或 5.68?

最佳答案

extension Float {
func rounded(toPlaces places:Int) -> Float {
let divisor = pow(10.0, Float(places))
return (self * divisor).rounded() / divisor
}
}

let floatNumber:Float = 3.67565676

print(floatNumber.rounded(toPlaces: 2))

//prints 3.68

关于swift - 不适用于 swift 4 的 Float,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48003602/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com