gpt4 book ai didi

swift - 如何在 Swift 中使用精度?

转载 作者:行者123 更新时间:2023-11-28 08:03:06 24 4
gpt4 key购买 nike

heightInM = ((Double(heightInFeetText.text!)! * 30.48) + (Double(heightInInchText.text!)! * 2.54))/100

output = Double(weightInKgText.text!)! / (heightInM * heightInM)
bmiOutput.text = String(output)

如何格式化带 2 个小数点的 double 值?

最佳答案

只需使用 stringWithFormat API,添加指定您希望看到多少位数字。

示例:

let floatValue = 2.333123211
let output = String(format: "%0.2f", floatValue) // prints 2.33

在您的情况下:

bmiOutput.text = String(format: "%0.2f", output)

关于swift - 如何在 Swift 中使用精度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46022958/

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