csharp 在C#中生成一个随机数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 在C#中生成一个随机数相关的知识,希望对你有一定的参考价值。

using System;

public class numberGenerator
{
	public static void Main()
	{
		int minNumber;
		int maxNumber;
		Console.WriteLine("Please enter minimum value");
		minNumber = Convert.ToInt16(Console.ReadLine());
		Console.WriteLine("Please enter maximum value");
		maxNumber = Convert.ToInt16(Console.ReadLine());
		Random random = new Random();
		int randomNumber = random.Next(minNumber, maxNumber);
		Console.WriteLine("Your random number is {0}!", randomNumber);
	}
}

以上是关于csharp 在C#中生成一个随机数的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 在C中生成随机数

我需要在 C 中生成随机数 [重复]

在c中生成1到10之间的随机数

如何在C中生成随机浮点数

如何在 Bash 中生成随机数?

在c ++中生成随机双数