자윤이와고리즘/Code

[프로그래머스] 약수의 합

EUJU 2019. 7. 22. 11:10
#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;
}