标签: ios swift
根据规则,当我向上舍入并向下舍入字符串时,output就是这样。
output
1.41 - > 1.40 1.49 - > 1.50
但在我的情况下它有点不同:我希望我的字符串向下舍入,就像字符串是1.46我想得到1.40。
答案 0 :(得分:1)
使用floor
floor
let foo = floor(1.49 * 10) / 10 print(foo) //1.4 let bar = floor(6.71 * 10) / 10 print(bar) //6.7