fork download
  1. using static System.Console;
  2. using static System.Convert;
  3. using System.Linq;
  4.  
  5. public class Program {
  6. public static void Main() {
  7. WriteLine("O maior numero é " + Teste(4242));
  8. WriteLine("O maior numero é " + Teste(123));
  9. WriteLine("O maior numero é " + Teste(100009));
  10. WriteLine("O maior numero é " + Teste(10000000));
  11. }
  12. public static int Teste(int number) => number >= 10000000 ? -1 : ToInt32(new string(number.ToString().OrderByDescending(x => x).ToArray()));
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/110892/101
Success #stdin #stdout 0.02s 17408KB
stdin
Standard input is empty
stdout
O maior numero é 4422
O maior numero é 321
O maior numero é 910000
O maior numero é -1