본문 바로가기

Algorithm/Programers - C++

[프로그래머스]자릿수 더하기 / to_string

문제

자연수 N이 주어지면, N의 각 자릿수의 합을 구해서 return 하는 solution 함수를 만들어 주세요.
예를 들어 N = 123이면 1 + 2 + 3 = 6을 return 하면 됩니다.

 

풀이

#include <iostream>
#include <string>

using namespace std;
int solution(int n)
{
    string s = to_string(n);
    int answer = 0;
    for(int i=0; i<s.length(); i++){
        answer += s[i]%'0';
    }
    return answer;
}

s[i]%'0' 대신 s [i]-'0'를 사용할 수 있다.