Advertisement
IGRODELOFF

Task24

Apr 14th, 2022
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.65 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Task24
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Random random = new Random();
  10.  
  11.             int startValue = 1;
  12.             int countValue = startValue;
  13.             int bufferValue = 0;
  14.             int bufferCountValue = 0;
  15.             int step = 1;
  16.             int maxValue = 10;
  17.             int minValue = 0;
  18.             int valueMaxElementArray = 30;
  19.             int[] array = new int[valueMaxElementArray];
  20.  
  21.             for (int i = minValue; i < valueMaxElementArray; i++)
  22.             {
  23.                 array[i] = random.Next(minValue, maxValue);
  24.                 Console.Write(array[i] + " ");
  25.             }
  26.  
  27.             for (int i = step; i < valueMaxElementArray; i++)
  28.             {
  29.                 if (array[i] == array[i - step])
  30.                 {
  31.                     countValue++;
  32.                     if (countValue > bufferCountValue)
  33.                     {
  34.                         bufferCountValue = countValue;
  35.                         bufferValue = array[i];
  36.                     }
  37.                 }
  38.                 else
  39.                 {
  40.                     countValue = startValue;
  41.                 }
  42.             }
  43.  
  44.             if (countValue == startValue)
  45.             {
  46.                 Console.WriteLine("\nЗначение " + bufferValue + " повторялось " + bufferCountValue + " - раза. Что является наибольшим количеством раз.");
  47.             }
  48.             else
  49.             {
  50.                 Console.WriteLine("\nНет повторяющихся элементов.");
  51.             }
  52.         }
  53.     }
  54. }
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement