我是C#的初學者。我的任務是用隨機生成的數字填充數組,並檢查是否有類似的數字,並用新的隨機數來更改它們。 但是這個新生成的隨機數應該根據現有的數組進行檢查。 我需要幫助完成最後一項任務。查看c中數組中的相似數字#
這裏是我的代碼:提前
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
Random r = new Random();
int[] x = new int[20];
for (int i=0; i < 20; i++)
{
x[i] = r.Next(100);
Console.Write(x[i]+" "); //printing original array
}
Console.WriteLine();
Console.WriteLine("New array is : ");
for (int k = 0; k < 20;k++)
{
for (int n = k + 1; n < 20;n++)
{
if (x[n]==x[k]) //checking if there duplicated ones
{
Console.Write("New number is: ");
x[k]= r.Next(100);
}
}
Console.WriteLine(x[k]);
}
Console.ReadKey();
}
}
}
感謝
陣列有一個蘊含方法 - 你可以看看成 –