fusenapi/utils/format/price.go
laodaming ee92468392 fix
2023-09-15 14:52:36 +08:00

14 lines
221 B
Go

package format
import (
"fmt"
"strconv"
)
// 厘转美元
func CentitoDollar(price int64) float64 {
str := fmt.Sprintf("%.3f", float64(price)/float64(1000))
dollar, _ := strconv.ParseFloat(str, 64)
return dollar
}