[Go] 小数点以下を四捨五入する
作成日: 2021年07月12日
math
パッケージの Round
関数を使用すると、小数点以下を四捨五入することができます。
package main
import (
"fmt"
"math"
)
func main() {
i := 111.5
fmt.Println(math.Round(i))
}
実行結果は下記のとおりです。
112