我是编程新手,所以请多多包涵!
我正在尝试将数组的各个部分设置为随机值,但是每当我运行程序时,它会将数组的所有部分设置为相同的值。我希望他们都与众不同。
这是我的代码:
int[] hello_array = new int[10];
Console.WriteLine("Here");
Random rndm = new Random();
for (int j = 0; j < hello_array.Length; j++)
{
hello_array[j] = rndm.Next(99);
}
Console.WriteLine("Now Here");
for (int i = 0; i < hello_array.Length; i++)
{
Console.WriteLine("hahahaha look at this " + hello_array[0]);
我可能完全错过了它,但我不知道我的代码有什么问题!有人可以告诉我如何使数组的所有十个部分生成不同的随机数吗?