Advertisement
Benya365

lab2_2

May 11th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.73 KB | None | 0 0
  1. using System;
  2.  
  3. class Program
  4. {
  5.     public static int Func (int num)
  6.     {
  7.         int ser = 1, prefSer = 1, pref = -1, cur;
  8.         num *= 10;
  9.  
  10.         do
  11.         {
  12.             num /= 10;
  13.             cur = num % 10;
  14.  
  15.             if(cur == pref)
  16.                 ser++;
  17.             else
  18.             {
  19.                 if(ser > prefSer)
  20.                     prefSer = ser;
  21.                 ser = 1;
  22.             }
  23.             pref = cur;            
  24.         }
  25.         while (num > 10);
  26.  
  27.         return ser > prefSer ? ser : prefSer;
  28.     }
  29.  
  30.     static void Main(string[] args)
  31.     {
  32.         int num;
  33.         int.TryParse(Console.ReadLine(), out num);
  34.         Console.WriteLine(Func(num));
  35.         Console.ReadKey();
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement