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