본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] 약수의 합('자바 입문' 강의 마지막 문제)

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