using System; publicclassDemo { 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) }