问题解决方法:
在这里,我们将演示 rand.Intn() 函数的使用。 rand.Intn() 函数返回 0-N 之间的随机数。这里,N 是函数 rand.Intn() 中指定的数字。
程序/源代码:
下面给出了演示 rand.Intn() 函数的源代码。给定的程序在 ubuntu 18.04 操作系统上编译和执行成功。
// Golang program to demonstrate the
// rand.Intn() function
package main
import "math/rand"
import "fmt"
//Entry point for the program
func main() {
fmt.Println("Random number:", rand.Intn(786))
fmt.Println("Random number:", rand.Intn(786))
fmt.Println("Random number:", rand.Intn(786))
fmt.Println("Random number:", rand.Intn(786))
}
输出:
RUN 1: Random number: 143 Random number: 279 Random number: 293 Random number: 371
说明:
在上面的程序中,我们声明了包 main。 main 包用于告诉 Go 语言编译器必须编译该包并生成可执行文件。在这里,我们将所需的包导入到预定义的函数中。
在 main() 函数中,我们四次使用了参数值为 786 的 rand.Intn() 函数。 rand.Intn() 函数返回 0-786 之间的随机数。之后,我们在控制台屏幕上打印结果。
相关用法
- Golang rand.Seed()用法及代码示例
- Golang reflect.Kind()用法及代码示例
- Golang reflect.FuncOf()用法及代码示例
- Golang reflect.NumMethod()用法及代码示例
- Golang ring.Len()用法及代码示例
- Golang reflect.Complex()用法及代码示例
- Golang reflect.Int()用法及代码示例
- Golang reflect.ArrayOf()用法及代码示例
- Golang reflect.Close()用法及代码示例
- Golang reflect.IsNil()用法及代码示例
- Golang reflect.DeepEqual()用法及代码示例
- Golang reflect.MapIndex()用法及代码示例
- Golang reflect.Len()用法及代码示例
- Golang reflect.Tag.Lookup()用法及代码示例
- Golang reflect.Set()用法及代码示例
- Golang reflect.NewAt()用法及代码示例
- Golang reflect.MakeMap()用法及代码示例
- Golang reflect.CanAddr()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang reflect.SetBool()用法及代码示例
注:本文由纯净天空筛选整理自 Golang program to demonstrate the rand.Intn() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。