Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Homework22
- {
- class Program
- {
- static void Main()
- {
- Random random = new Random();
- int[] array = new int[30];
- int firstElementOFArray = array[0];
- int lastElementOfArray = array.Length - 1;
- Console.WriteLine("Исходный массив:\n ");
- for (int i = 0; i < array.Length; i++)
- {
- array[i] = random.Next(-50, 50);
- Console.Write(array[i] + " ");
- }
- if (array[firstElementOFArray] > array[firstElementOFArray + 1])
- {
- Console.WriteLine($"\n\nЛокальный максимум: {array[firstElementOFArray]}. Первый элемент массива.");
- }
- for (int i = 0; i < array.Length; i++)
- {
- if (array[i] != array[firstElementOFArray] && array[i] != array[lastElementOfArray] && array[i] > array[i - 1] && array[i] > array[i + 1])
- {
- Console.WriteLine($"Локальный максимум: {array[i]}.");
- }
- }
- if (array[lastElementOfArray] > array[lastElementOfArray - 1])
- {
- Console.WriteLine($"Локальный максимум: {array[lastElementOfArray]}. Последний элемент массива.");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement