“Golang Round Float ke Jumlah Digit Presisi” Kode Jawaban

Golang Round Float ke Jumlah Digit Presisi

// Rounds float64 number to nbDigits
func Round(num float64, nbDigits float64) float64 {
	pow := math.Pow(10., nbDigits)
	rounded := float64(int(num*pow)) / pow
	return rounded
}
smjure

Golang Round Float ke Jumlah Digit Presisi

// Rounds float64 number to nbDigits
func Round(num float64, nbDigits float64) float64 {
	pow := math.Pow(10., nbDigits)
	rounded := float64(int(num*pow)) / pow
	return rounded
}
smjure

Jawaban yang mirip dengan “Golang Round Float ke Jumlah Digit Presisi”

Pertanyaan yang mirip dengan “Golang Round Float ke Jumlah Digit Presisi”

Lebih banyak jawaban terkait untuk “Golang Round Float ke Jumlah Digit Presisi” di Go

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya