C\#실 현 된 간단 한 난수 생 성기 기능 예시

1951 단어 C#난수
본 고의 실례 는 C\#가 실현 한 간단 한 난수 생 성기 기능 을 다 루 었 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
실행 효 과 는 다음 과 같 습 니 다:

구체 적 인 코드 는 다음 과 같다.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Math
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }
    System.Random t=new System .Random() ;//        
    string num;//         ,    
    private void button1_Click(object sender, EventArgs e)
    {
      timer1.Start();
    }
    private void button2_Click(object sender, EventArgs e)
    {
      timer1.Stop();
    }
    private void timer1_Tick(object sender, EventArgs e)
    {
      this.num = Convert.ToString(t.Next(1,1000));//  1 1000        
      textBox1.Text = num;
    }
    private void button3_Click(object sender, EventArgs e)
    {
      this.Close();//    
    }
  }
}
PS:여기 서 몇 가지 기능 이 유사 한 온라인 도 구 를 제공 하여 참고 하 시기 바 랍 니 다.
온라인 무 작위 숫자/문자열 생 성 도구:
http://tools.jb51.net/aideddesign/suijishu
온라인 무 작위 문자/무 작위 암호 생 성 도구:
http://tools.jb51.net/aideddesign/rnd_password
고강도 암호 생 성기:
http://tools.jb51.net/password/CreateStrongPassword
더 많은 C\#관련 내용 에 관심 이 있 는 독 자 는 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 의 C\#프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기