Andy's blog

If you always do what you've always done, you'll always get what you've always got.

0%

2021-03-08-亂數

認識亂數方法


參考資料:
小山的 C# 教學-第30課-亂數 Random


亂數範例

1
2
3
4
5
6
7
8
using System;
public class Demo
{
Random random = new random();
int X = random.next(); //亂數介於 0 到整數最大值之間 (0~2147483647)
int Y = random.next(int maxValue); //亂數介於 0 到 最大值間(不包含MaxValue)
int Z = random.next(int minValue, int maxValue); //亂數介於 minValue 到 最大值間(含minValue,不包含MaxValue)
}