백준 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);
} } }
|