Home > Article > Backend Development > How to convert integers to floating point numbers in Go language
Go language's method of converting integers into floating point numbers: [float32(int_expression)]. Type conversion is used to convert variables of one data type into variables of another type. The basic format is [type_name(expression)].
The operating environment of this article: windows10 system, Go 1.11.2, thinkpad t480 computer.
Type conversion is used to convert variables of one data type into variables of another type. The basic format of Go language type conversion is as follows:
type_name(expression)
type_name is the type and expression is the expression.
Example
In the following example, the integer type is converted into a floating point type, the result is calculated, and the result is assigned to a floating point variable:
package main import "fmt" func main() { var sum int = 17 var count int = 5 var mean float32 mean = float32(sum)/float32(count) fmt.Printf("mean 的值为: %f\n",mean) }
The above example executes the output result For:
mean 的值为: 3.400000
Related recommendations: golang tutorial
The above is the detailed content of How to convert integers to floating point numbers in Go language. For more information, please follow other related articles on the PHP Chinese website!