본문 바로가기

코딩테스트/프로그래머스

[Level 1][C++] 약수의 합

#include <string>
#include <vector>

using namespace std;

int solution(int n) {
      int answer = 0;
    for(int i=1; i<=n; i++)
        if(n%i==0)
            answer+=i;  
    return answer;
}