[프로그래머스]자릿수 더하기 jyukki included in 프로그래머스 2019-12-24 57 words One minute Contents https://programmers.co.kr 풀이: 자연수 n의 각 자릿수의 합을 구해서 리턴한다. 코드: 사용언어 : c++ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include <iostream> using namespace std; int solution(int n) { int answer = 0; while (n != 0) { answer += n % 10; n /= 10; } return answer; } Please enable JavaScript to view the comments powered by Disqus.