詳解C#產生隨機數功能的程式碼範例

來源:互聯網
上載者:User
這篇文章主要介紹了C#產生隨機數功能,涉及C#數學運算與字串操作相關技巧,具有一定參考借鑒價值,需要的朋友可以參考下

本文執行個體講述了C#產生隨機數功能。分享給大家供大家參考,具體如下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace csharp{  class Program  {    static void Main(string[] args)    {      Console.WriteLine("產生隨機數\n");      int randCount = 9;//隨機數發的個數      int randMin = 1;//隨機數最小值      int randMax = 21;//隨機數最大值      int randIndex, flag, temp;      randIndex = temp = flag = 0;      Random rand = new Random();      int[] randArr = new int[randCount];      randArr[0] = rand.Next(randMin, randMax);      while (true)      {        flag = 0;        temp = rand.Next(randMin, randMax);        for (int i = 0; i <= randIndex; i++)        {          if (temp == randArr[i])          {            flag = 1;            break;          }        }        if (flag == 1)//如果 flag == 1 則有重複的數字產生。        {          continue;        }        else if (flag == 0)        {          randIndex++;          randArr[randIndex] = temp;        }        if (randIndex >= randCount - 1)//如果達到 randCount 退出迴圈        {          break;        }      }      for (int i = 0; i < randCount; i++)      {        Console.WriteLine("arr[" + i + "]=" + randArr[i]);      }      Console.WriteLine("\n任意鍵退出。");      Console.ReadLine();    }  }}

產生無重複的隨機數

運行結果如下:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.