728x90 반응형 자릿수 더하기1 프로그래머스 - 자릿수 더하기 class Solution { public int solution(int n) { int answer = 0; while(n>0){ answer += n%10; n /= 10; } return answer; } } 2023. 2. 23. 이전 1 다음 728x90 반응형