본문 바로가기

알고리즘 문제 풀이/Programmers

자릿수 더하기 - 1단계 (C++)

반응형
SMALL
#include <iostream>

using namespace std;

int solution(int n)
{
	int answer = 0;
    while (n) {
    	answer += n % 10;
        n = n / 10;
    }
    cout << answer << endl;
    
    return answer;
}
반응형
LIST