price.go 424 B

123456789101112131415
  1. /**
  2. #*****************************************************************************
  3. # @file price.go
  4. # @author MakerYang(https://www.makeryang.com)
  5. # @statement 免费课程配套开源项目,任何形式收费均为盗版
  6. #*****************************************************************************
  7. */
  8. package Utils
  9. import "fmt"
  10. func PriceConvert(num int) string {
  11. return fmt.Sprintf("%.2f", float64(num)/100)
  12. }