zoukankan      html  css  js  c++  java
  • 按照给定区间产生指定数目的随机数—C#

    从34.700到34.800之间产生1000个随机数

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;

    namespace TEST
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }

            private void Suiji()
            {
                string result= "";
                //定义一个随机类Random的对象,并初始化
                System.Random rad = new Random();
                for (int i = 0; i < 1000; i++)
                {
                    //从0到1000中随机产生一个数(取不到0和1000)
                    double n1 = rad.Next(1000);
                    //除以10000得到所需小数
                    double n2 = n1 / 10000;
                    double n3 = n2 + 34.7;
                    result += n3.ToString() + "   ";
                }
                textBox1.Text = result;
            }
            /// <summary>
            /// 主窗体加载事件,同时调用自定义的方法Suiji()
            /// </summary>
            /// <param name="sender"></param>
            /// <param name="e"></param>
            private void Form1_Load(object sender, EventArgs e)
            {
                Suiji();
            }
        }
    }

  • 相关阅读:
    【python-leetcode295-双堆】数据流的中位数
    python数组二分查找算法bisect
    python堆队列算法heapq
    python中的容器序列类型collections
    step(iter)、epoch、batch size之间的关系
    【python-leetcode437-树的深度遍历】路径总和Ⅲ
    Java 代码实现POST/GET请求
    .NET 按格式导出txt
    java fastjson解析json字符串
    Java 对象转XML xStream 别名的使用 附下载方式
  • 原文地址:https://www.cnblogs.com/sdustyuleyi/p/2385486.html
Copyright © 2011-2022 走看看