Using System;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
int n = 10;
int[] a = new int[n];
Random rnd = new Random();
Console.Write("исходный массив: ");
for(int i=0;i {
a[i] = rnd.Next(0, 10);
Console.Write(a[i]+" ");
}
Console.WriteLine("");
Console.Write("полученный массив: ");
for (int i=0;iConsole.ReadLine();
}
}
}