프로그래머스의 코딩테스트 연습문제 중 약수의 합 문제의 정답입니다.

C 코드

  #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;
  }



감사합니다!