Advertisement
elena1234

Sort Numbers

Sep 25th, 2020
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace sortNumber
  5. {
  6.     class MainClass
  7.     {
  8.         public static void Main(string[] args)
  9.         {
  10.             List<int> listNum = new List<int>();
  11.             int num1 = int.Parse(Console.ReadLine());
  12.             listNum.Add(num1);
  13.             int num2 = int.Parse(Console.ReadLine());
  14.             listNum.Add(num2);
  15.             int num3 = int.Parse(Console.ReadLine());
  16.             listNum.Add(num3);
  17.  
  18.  
  19.             listNum.Sort();
  20.             listNum.Reverse();
  21.             listNum.ForEach(Console.WriteLine);
  22.         }
  23.     }
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement