[프로그래머스]약수의 합 jyukki included in 프로그래머스 2019-12-22 54 words One minute Contents https://programmers.co.kr 풀이: 정수 n의 모든 약수의 합을 리턴한다. 코드: 사용언어 : c++ 1 2 3 4 5 6 7 8 9 10 11 #include <stdio.h> #include <stdbool.h> #include <stdlib.h> int solution(int n) { int answer = 0; for (int i = 1;i <= n;i++) if (n % i == 0) answer += i; return answer; } Please enable JavaScript to view the comments powered by Disqus.