https://www.acmicpc.net/problem/1110
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int next = n, cnt = 0;
do
{
cnt++;
next = next % 10 * 10 + (next / 10 + next % 10) % 10;
} while (n != next);
cout << cnt << endl;
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 1676번 : 팩토리얼 0의 개수 (0) | 2019.02.19 |
---|---|
[C++] 백준 4344번 : 평균은 넘겠지 (0) | 2019.02.19 |
[C++] 백준 1085번 : 직사각형에서 탈출 (0) | 2019.02.19 |
[C++] 백준 10817번 : 세 수 (0) | 2019.02.18 |
[C++] 백준 2839번 : 설탕 배달 (0) | 2019.02.18 |