当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang rand.Intn()用法及代码示例


问题解决方法:

在这里,我们将演示 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 program to demonstrate the rand.Intn() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。