「Go言語」Floor()で数値の小数点を切り捨てるサンプル
書式
math.Floor(数字)
使用例
package main import ( "fmt" "math" ) func main() { fmt.Println("値11: ") fmt.Println(math.Floor(67.69)) fmt.Println("値22: ") fmt.Println(math.Floor(345.35)) fmt.Println("値33: ") fmt.Println(math.Floor(8.945)) fmt.Println("値44: ") fmt.Println(math.Floor(-563.676)) fmt.Println("値55: ") fmt.Println(math.Floor(98)) fmt.Println("値66: ") fmt.Println(math.Floor(-233.544)) }
実行結果
>go run 009sample.go
値11:
67
値22:
345
値33:
8
値44:
-564
値55:
98
値66:
-234