Advertisement
desislava_topuzakova

Problem 3.Класиране на приема

Jun 14th, 2020
824
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace Sortign
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             List<int> results = Console.ReadLine().Split(" ").Select(int.Parse).ToList();
  12.             results.Sort(); //нарастващ ред
  13.             results.Reverse();// намаляващ
  14.             Console.WriteLine(string.Join(" ", results));
  15.  
  16.         }
  17.  
  18.        
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement