본문 바로가기
Computer Science/Coding Test

c++(cpp) 프로그래머스 : 코딩 테스트 - 자릿수 더하기

by hzyiunn 2022. 7. 26.
728x90
반응형

#include <iostream>
#include <string>

using namespace std;
int solution(int n)
{
    int answer = 0;
    string s = to_string(n);
    for(int i = 0 ; i < s.size(); i++)
    {
        s[i] = s[i] - 48;
        //48대신 '0'으로 써도 된다.
        //s[i] = s[i]-'0'; 이렇게..
        
        answer += s[i];
    }
    return answer;
}
728x90
반응형

댓글