프로그래머스(Level 1) - 🗿 약수의 합

Gammi·2022년 12월 26일
0

프로그래머스

목록 보기
18/69

✔ 문제




✔ 풀이


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;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글