Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Task24
- {
- class Program
- {
- static void Main(string[] args)
- {
- Random random = new Random();
- int startValue = 1;
- int countValue = startValue;
- int bufferValue = 0;
- int bufferCountValue = 0;
- int step = 1;
- int maxValue = 10;
- int minValue = 0;
- int valueMaxElementArray = 30;
- int[] array = new int[valueMaxElementArray];
- for (int i = minValue; i < valueMaxElementArray; i++)
- {
- array[i] = random.Next(minValue, maxValue);
- Console.Write(array[i] + " ");
- }
- for (int i = step; i < valueMaxElementArray; i++)
- {
- if (array[i] == array[i - step])
- {
- countValue++;
- if (countValue > bufferCountValue)
- {
- bufferCountValue = countValue;
- bufferValue = array[i];
- }
- }
- else
- {
- countValue = startValue;
- }
- }
- if (countValue == startValue)
- {
- Console.WriteLine("\nЗначение " + bufferValue + " повторялось " + bufferCountValue + " - раза. Что является наибольшим количеством раз.");
- }
- else
- {
- Console.WriteLine("\nНет повторяющихся элементов.");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement