https://www.acmicpc.net/problem/1110
#include <iostream>
#include <string>
using namespace std;
int main()
{
int count = 0;
int temp;
int n;
cin >> n; // 0 <= n <= 99
if (n < 10 && n >0)
{
n = 10 * n + n;
count++;
temp = n % 10;
}
else if (n == 0)
{
cout << 1;
return 0;
}
else
{
temp = n;
}
while (true)
{
int a = (n / 10) + (n % 10);
int b = (n % 10 * 10) + (a % 10);
count++;
if (temp == b)
{
cout << count;
break;
}
else
{
n = b;
}
}
return 0;
}
'백준 문제풀이 > 브론즈1' 카테고리의 다른 글
백준 1453번 - 피시방 알바 (0) | 2021.10.28 |
---|---|
백준 1259번 - 팰린드롬수(palindrome) (0) | 2021.10.28 |
백준 1157번 - 단어 공부 (0) | 2021.10.28 |
백준 1145번 - 적어도 대부분의 배수 (0) | 2021.10.28 |
백준 1032번 - 명령 프롬프트 (0) | 2021.10.21 |