Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp5
- {
- class Program
- {
- static void Main(string[] args)
- {
- int[] array = new int[30];
- Console.WriteLine("Заполните массив:");
- for (int i = 0; i < array.Length; i++)
- {
- array[i] = Convert.ToInt32(Console.ReadLine());
- }
- Console.WriteLine("Вы заполнили массив:");
- for (int i = 0; i < array.Length; i++)
- {
- Console.WriteLine(array[i]+" ");
- }
- if (array[0] > array[1])
- {
- Console.Write(array[0] + " ");
- }
- for (int i = 1; i < array.Length - 1; i++)
- {
- if (array[i] > array[i - 1] && array[i] > array[i + 1])
- {
- Console.Write(array[i]+ " ");
- }
- }
- if (array[array.Length - 1] > array[array.Length-2])
- {
- Console.Write(array[array.Length] + " ");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement