공부기록/백준

[백준] 1110번 더하기 사이클

메델 2023. 9. 27. 04:26
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner kb = new Scanner(System.in);
        int num = kb.nextInt();
        int originalNum = num; 
        int count = 0;
        
        do {
            int tensDigit = num / 10; 
            int onesDigit = num % 10; 
            int sum = tensDigit + onesDigit; 
            num = (onesDigit * 10) + (sum % 10);
            count++;
        } while (num != originalNum); 
        
        System.out.print(count);
    }
}

'공부기록 > 백준' 카테고리의 다른 글

[백준] 15649번 N과 M (1)  (0) 2023.09.27
[백준] 2775번 부녀회장이 될테야  (1) 2023.09.27
[백준] 4963번 섬의 개수  (0) 2023.09.24
[백준] 2667번 단지번호붙이기  (0) 2023.09.24
[백준] 1260번 DFS와 BFS  (0) 2023.09.23