Advertisement
Spocoman

05. Top Integers

Jan 21st, 2022
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.80 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace TopIntegers
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int[] arr = Console.ReadLine().Split().Select(int.Parse).ToArray();
  11.            
  12.             for (int i = 0; i < arr.Length; i++)
  13.             {
  14.                 bool isBigger = true;
  15.                 int current = arr[i];
  16.                 for (int j = i + 1; j < arr.Length; j++)
  17.                 {
  18.                     if (arr[j] >= current)
  19.                     {
  20.                         isBigger = false;
  21.                         break;
  22.                     }                  
  23.                 }
  24.                 if (isBigger)
  25.                 {
  26.                     Console.Write(current + " ");
  27.                 }
  28.             }
  29.         }
  30.     }
  31. }
  32.  
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement