[python3] 1110번 더하기 사이클
10의 자리수는 // 연산자를 이용해 변수에 저장, 1의 자리수는 % 연산자를 이용해 변수해 저장해 사이클을 돌리면 된다. N = int(input()) M = N repeat = 0 while N != M or repeat == 0: cycle10 = N // 10 cycle1 = N % 10 cycle = (cycle10 + cycle1) % 10 cycle10 = cycle1 cycle1 = cycle N = cycle10 * 10 + cycle1 repeat += 1 print(repeat)
문제 풀이/Baekjoon Online Judge
2018. 3. 15. 16:25