Computer >> Máy Tính >  >> Lập trình >> C#

Phương thức Random.Next () trong C #


Phương thức Random.Next () trong C # được sử dụng để trả về một số nguyên ngẫu nhiên không âm.

Cú pháp

Cú pháp như sau -

public virtual int Next ();
public virtual int Next (int maxVal);

Ở trên, tham số maxVal là giới hạn trên độc quyền của số ngẫu nhiên sẽ được tạo.

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ -

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());
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Random numbers.....
1014639030
1510161246
1783253715
487417801
249480649

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ khác -

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));
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Random numbers.....
613432308
1705125884
1787561614
1243383842
2016323534
Random numbers from 1 to 10.....
2
7
8
5
9