백준 1110번

Console(콘솔)/알고리즘 2019. 9. 27. 10:34

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

            int num = int.Parse(Console.ReadLine());

 

            int cnt = 1;

            int chk = num;

            while (true)

            {

                int a = num / 10;

                int b = num % 10;

                int c = a + b;

                num = b * 10 + c % 10;

 

                if (num == chk)

                    break;

                else

                {

                    cnt++;

                }

            }

            Console.WriteLine(cnt);

 

        

        }

    }

}

 

 

'Console(콘솔) > 알고리즘' 카테고리의 다른 글

백준 10817번  (0) 2019.09.27
백준 1330번  (0) 2019.09.27
백준 10951번  (0) 2019.09.26
백준 5622번  (0) 2019.09.26
백준 9655번  (0) 2019.09.26
: