프로그래머스 181849 문자열 정수의 합

1 개요[ | ]

프로그래머스 181849 문자열 정수의 합

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(string num_str) {
    int answer = 0;
    for(char ch: num_str) {
        int num = ch - '0';
        answer += num;
    }
    return answer;
}
#include <string>
#include <vector>
#include <cstdlib>

using namespace std;

int solution(string num_str) {
    int answer = 0;
    for(int i=0; i<num_str.length() ; i++) {
        answer += atoi(num_str.substr(i,1).c_str());
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}