Guest User

Untitled

a guest
Nov 4th, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1.  
  2. namespace Telerik
  3. {
  4.     using System;
  5.     using System.Linq;
  6.  
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             int[] numbers = Console.ReadLine().Split(",").Select(int.Parse).ToArray();
  12.  
  13.             Console.WriteLine(
  14.                 string.Join(", ",
  15.                 numbers.Where(x => x < 0).Concat(numbers.Where(x => x == 0))
  16.                 .Concat(numbers.Where(x => x > 0))));
  17.         }
  18.     }
  19. }
Add Comment
Please, Sign In to add comment