1234567891011121314151617181920212223 |
- package math
- import (
- "fmt"
- "math"
- "testing"
- )
- /*测试基本数学函数*/
- func TestBasic(t *testing.T){
- i:=100
- fmt.Println(math.Abs(float64(i)))//绝对值
- fmt.Println(math.Ceil(5.1)) //向上取整
- fmt.Println(math.Floor(5.8)) //向下取整
- fmt.Println(math.Mod(11, 3)) //取余数,同11%3
- fmt.Println(math.Modf(5.26)) //取整数,取小数
- fmt.Println(math.Pow(3, 2)) //x的y次方
- fmt.Println(math.Pow10(4)) // 10的n次方
- fmt.Println(math.Sqrt(8)) //开平方
- fmt.Println(math.Cbrt(8)) //开立方
- fmt.Println(math.Pi)
- }
|