摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace RandomNumber{ public class RandomCreater { // 随机数生成器只需要一个 private static readonly System.Random random = new Random(); public int[] Random(int[] array) { int lengt... 阅读全文