เมธอด Random.Next() ใน C# ใช้เพื่อคืนค่าจำนวนเต็มสุ่มที่ไม่ติดลบ
ไวยากรณ์
ไวยากรณ์มีดังนี้ −
public virtual int Next (); public virtual int Next (int maxVal);
ด้านบน พารามิเตอร์ maxVal เป็นขอบเขตบนเฉพาะของตัวเลขสุ่มที่จะสร้าง
ตัวอย่าง
เรามาดูตัวอย่างกัน −
using System; public class Demo { public static void Main(){ Random r = new Random(); Console.WriteLine("Random numbers....."); for (int i = 1; i <= 5; i++) Console.WriteLine(r.Next()); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Random numbers..... 1014639030 1510161246 1783253715 487417801 249480649
ตัวอย่าง
เรามาดูตัวอย่างอื่นกัน −
using System; public class Demo { public static void Main(){ Random r = new Random(); Random r2 = new Random(); Console.WriteLine("Random numbers....."); for (int i = 1; i <= 5; i++) Console.WriteLine(r.Next()); Console.WriteLine("\nRandom numbers from 1 to 10....."); for (int i = 1; i <= 5; i++) Console.WriteLine(r2.Next(10)); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Random numbers..... 613432308 1705125884 1787561614 1243383842 2016323534 Random numbers from 1 to 10..... 2 7 8 5 9