#include <iostream>
#include <string>
#include <numeric>
using namespace std;
int solution(int n)
{
string s = to_string(n);
int answer = accumulate(s.begin(), s.end(),0)-'0'*s.size();
// [실행] 버튼을 누르면 출력 값을 볼 수 있습니다.
cout << "Hello Cpp" << endl;
return answer;
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1][C++] 문자열 내 마음대로 정렬하기 (0) | 2024.10.01 |
---|---|
[Level 1][C++] 이상한 문자 만들기 (0) | 2024.09.30 |
[Level 1][C++] 최대공약수와 최소공배수 (0) | 2024.09.30 |
[Level 1][C++] 정수 제곱근 판별 (0) | 2024.09.30 |
[Level 1][C++] 약수의 합 (0) | 2024.09.30 |