golang元转分、分转元

参考

https://godoc.org/github.com/shopspring/decimal#example-NewFromFloat

代码

package digitalConver

import (
	"fmt"
	"github.com/shopspring/decimal"
)

//一分钱转一块钱,
//分转元
func Fen2Yuan(price uint64) string {
	d := decimal.New(1,2) //分除以100得到元
	result := decimal.NewFromInt(int64(price)).DivRound(d,2).String()
	fmt.Printf("输入值为:%d,      分转元后,精度为二的结果为:%s\n", price, result)
	return result
}

//元转分,乘以100后,保留整数部分
func Yuan2Fen(price float64) int64 {
	d := decimal.New(1,2)//分转元乘以100
	d1 := decimal.New(1,0)//乘完之后,保留2为小数,需要这么一个中间参数
	//df := decimal.NewFromFloat(price).Mul(d).DivRound(d1,2).String()
	df := decimal.NewFromFloat(price).Mul(d).IntPart()

	//如下是满足,当乘以100后,仍然有小数位,取四舍五入法后,再取整数部分
	dff := decimal.NewFromFloat(price).Mul(d).DivRound(d1,0).IntPart()
	fmt.Printf("输入值为:%f, 简单的元转分后,取整数部分:%d\n", price, df)
	fmt.Printf("输入值为:%f, 元转分后,若还有小数,需做四舍五入后,再取整数:%d\n", price, dff)
	return df
}
//main.go
func main() {
	digitalConver.Fen2Yuan(2556)
	digitalConver.Yuan2Fen(23.56511)
}

输出

输入值为:2556,      分转元后,精度为二的结果为:25.56
输入值为:23.565110, 简单的元转分后,取整数部分:2356
输入值为:23.565110, 元转分后,若还有小数,需做四舍五入后,再取整数:2357

你可能感兴趣的:(golang)