Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Untitled
SUBMITTED BY:
antoineh1
DATE:
June 3, 2016, 12:54 p.m.
FORMAT:
Text only
SIZE:
418 Bytes
Raw
Download
Tweet
HITS:
618
Go to comments
Report
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sort
{
class Sort
{
static void Main()
{
List<int> n = Console.ReadLine().Split().Select(int.Parse).ToList();
n.Sort((a,b) => b.CompareTo(a));
Console.WriteLine(string.Join(", ",n));
}
}
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus