C#一维数组创建用随机数填充及遍历源码

文章目录[隐藏]

C#源码:

//随机填充一维数组;
//产生1001--99之间的随机整数,填充数组
//数组类型是整数,大小为100
namespace ArrayRand
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] a = new int[100];
            //产生新的随机数对象
            Random r = new Random();
            for (int i=0;i<a.Length;i++)
                a[i] = r.Next(1,100);
 
            //遍历数组
            foreach (int k in a)
            {
                Console.Write("{0} ", k);             
            }
            Console.ReadKey();
        }        
    }
}

发布日期:

所属分类: 编程, 编程语言 标签:


没有相关文章!