问题解决方法:
在这个程序中,我们将使用 math.Min() 函数找到两个数字之间的最小值,并在控制台屏幕上打印结果。
程序/源代码:
下面给出了使用 math.Min() 函数查找两个数字之间的最小数字的源代码。给定的程序已成功编译并执行。
// Golang program to find the smallest number between two numbers
// using math.Min() function.
package main
import "fmt"
import "math"
func main() {
var num1 float64 = 10.25
var num2 float64 = 20.14
var small float64 = 0
small=math.Min(num1, num2)
fmt.Printf("Smallest number is:%f", small)
}
输出:
Smallest number is:10.250000
在上面的程序中,我们声明了包 main。 main 包用于告诉 Go 语言编译器必须编译该包并生成可执行文件。在这里,我们导入了包含 fmt 包文件的 fmt 包,然后我们可以使用与 fmt 包相关的函数。
在这里,我们还包含了使用 math-related 函数的数学包并创建了 main() 函数。 main() 函数是程序的入口点。在这里,我们创建了 3 个浮点变量 num1、num2、small,分别用 10.25、20.14、0 初始化。
在这里,我们使用 math 包的 Min() 函数来查找两个数字之间的最小数字,并在控制台屏幕上打印最小的数字。
相关用法
- Golang math.Max()用法及代码示例
- Golang math.Ceil()用法及代码示例
- Golang math.Ilogb()用法及代码示例
- Golang math.Floor()用法及代码示例
- Golang math.Expm1用法及代码示例
- Golang math.Gamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang math.Hypot用法及代码示例
- Golang math.Pow()用法及代码示例
- Golang math.Float32bits()用法及代码示例
- Golang math.Remainder()用法及代码示例
- Golang math.Atan2()用法及代码示例
- Golang math.Signbit()用法及代码示例
- Golang math.Lgamma()用法及代码示例
- Golang math.Y0()用法及代码示例
- Golang math.Float64frombits()用法及代码示例
- Golang math.RoundToEven()用法及代码示例
- Golang math.Jn()用法及代码示例
- Golang math.J0()用法及代码示例
- Golang math.IsNaN()用法及代码示例
注:本文由纯净天空筛选整理自 Golang program to find the smallest number between two numbers using math.Min() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。