Infiniti_Inter

5.2(в)

Oct 21st, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp1
  8. {
  9.     class Program
  10.     {
  11.         static int Func(int n)
  12.         {
  13.             int k = 0;
  14.             if (n % 2 != 0)
  15.                 k++;
  16.             if (n / 10 != 0)
  17.                 k += Func(n / 10);
  18.             return k;
  19.         }
  20.  
  21.  
  22.         static void Main(string[] args)
  23.         {
  24.             Console.Write("a=");
  25.             int a = int.Parse(Console.ReadLine());
  26.             Console.Write("b=");
  27.             int b = int.Parse(Console.ReadLine());
  28.             int mx = -1;//max
  29.             for (int n = a; n <= b; ++n)
  30.             {
  31.                 int m = Func(n);
  32.                 if (m > mx)
  33.                     mx = m;
  34.                 //Console.WriteLine("{0}={1}", n, m);
  35.  
  36.             }
  37.             for (int i = a; i <= b; ++i)
  38.             {
  39.                 int m = Func(i);
  40.                 if (m == mx)
  41.                     Console.WriteLine("{0}", i);
  42.             }
  43.             Console.ReadKey();
  44.         }
  45.     }
  46. }
Add Comment
Please, Sign In to add comment