Advertisement
Suslick

Task_5

Jan 30th, 2023 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.30 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             Random random = new Random();
  4.  
  5.             int minNumber = 1;
  6.             int maxNumber = 10;
  7.             int countElement = 30;
  8.             int countReapeat = 1;
  9.             int maxOfCountRepeat = 0;
  10.             int numberMaxOfCountRapeat;
  11.             int[] array = new int[countElement];
  12.  
  13.             array[0] = random.Next(minNumber, maxNumber);
  14.             numberMaxOfCountRapeat = array[0];
  15.  
  16.             Console.Write("Массив: ");
  17.  
  18.             for (int i = 1; i < array.Length; i++)
  19.             {
  20.                 array[i] = random.Next(minNumber, maxNumber);
  21.                 Console.Write(array[i] + " ");
  22.  
  23.                 if (array[i - 1] != array[i])
  24.                 {
  25.                     if (maxOfCountRepeat < countReapeat)
  26.                     {
  27.                         maxOfCountRepeat = countReapeat;
  28.                         numberMaxOfCountRapeat = array[i - 1];
  29.                     }
  30.  
  31.                     countReapeat = 1;
  32.                 }
  33.                 else
  34.                 {
  35.                     countReapeat++;
  36.                 }
  37.             }
  38.  
  39.             Console.WriteLine($"\nКол-во повторений: {maxOfCountRepeat}\n" +
  40.                 $"Число: {numberMaxOfCountRapeat}");
  41.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement