码迷,mamicode.com
首页 > 其他好文 > 详细

go math常用的方法

时间:2019-12-06 13:20:21      阅读:806      评论:0      收藏:0      [点我收藏+]

标签:ceil   绝对值   常用   pre   floor   package   UNC   float   int   

package main

import (
 "fmt"
 "math"      
)

func main() {
 i := 1   
 fmt.Prinln(math.Abs(float64(i)))       // 绝对值
 fmt.Println(math.Ceil(3.8))    // 向上取整数
 fmt.Println(math.Floor(3.6))    //向下取整
 fmt.Println(math.Mod(11, 3))   //取余数
 fmt.Println(math.Modf(3.22))    // 取整数和小数
 fmt.Println(math.Pow(3, 2))     //x的y次方
 fmt.Println(math.Sqrt(8))       // 开平方
 fmt.Println(math.Cbrt(8))       //开立方
 fmt.Println(math.Pi)					//π
}

  

go math常用的方法

标签:ceil   绝对值   常用   pre   floor   package   UNC   float   int   

原文地址:https://www.cnblogs.com/xianqingsong/p/11994437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!