如何在1-100之间创建1000个随机整数的数组

时间:2013-02-10 16:55:43

标签: c# arrays

如何编程c#以在1-100之间生成1000个随机整数的数组。

然后当一个人输入一个数字时,你怎么得到的,例如68你怎么能让程序说68出现这么多次,或者它根本不起作用!

我不是要求完整的答案我只需要提示从哪里开始。

以下是我所知道的:

我必须使用随机函数和if,但我不知道放在哪里!

4 个答案:

答案 0 :(得分:2)

int[] iArray = new int[1000];
int counter = 0;
Random random = new Random();
for(int i = 0; i < 1000; i++){
   iArray[i] = random.Next(1, 101); //1 - 100, including 100
}
int number = Convert.ToInt32(Console.ReadLine());
foreach(int i in iArray){
  if(i == number)count++;
}
Console.WriteLine("The number "+ number+" appears "+count+" times!");

答案 1 :(得分:0)

for loop开始,在每次迭代中调用random function并将结果放入public list。之后,您将为用户创建一个对话框以键入数字。您可以在列表中搜索lambda expression以查看您获得的匹配数量。

答案 2 :(得分:0)

  

在1-100之间创建一个1000个随机整数的数组,当一个人输入一个例如68你怎么能让程序说68出现这么多次

我认为你正在寻找这样的方法:

private static Random rnd = new Random();

public static IEnumerable<int> getRandomNumbers(int count, int lowerbound, int upperbound, int specialNumber = int.MinValue, int specialNumberCount = int.MinValue)
{
    List<int> list = new List<int>(count);
    HashSet<int> specialNumPositions = new HashSet<int>();

    if (specialNumberCount > 0)
    {
        // generate random positions for the number that must be create at least n-times
        for (int i = 0; i < specialNumberCount; i++)
        {
            while (!specialNumPositions.Add(rnd.Next(0, count)))
                ;
        }
    }

    while (list.Count < count)
    {
        if (specialNumPositions.Contains(list.Count))
            list.Add(specialNumber);
        else
            list.Add(rnd.Next(lowerbound, upperbound + 1));
    }
    return list;
}

你可以这样使用:

// ensure that 68 is generated at least 10 times
var list = getRandomNumbers(1000, 1, 100, 68, 10);

Demo

如果你只是想知道一个数字出现在列表中的频率,你可以使用Linq:

int count = list.Count(i => i == 68);

答案 3 :(得分:0)

array = [...Array(1000).keys()].sort((x, y) => {
    let ren = Math.random()
    if (ren == 0.5) return 0;
    return ren > 0.5 ? 1 : -1
})