VPanev

Untitled

Nov 20th, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Text;
  4.  
  5. namespace ConsoleApp1
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11.  
  12.  
  13. int[] firstListArray = Console.ReadLine().Split(',').Select(int.Parse).ToArray();
  14.  
  15. Array.Sort(firstListArray);
  16.  
  17. Array.Reverse(firstListArray);
  18.  
  19. Console.WriteLine(String.Join(",", firstListArray));
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment