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

popolarburr·2023년 2월 22일
0
post-thumbnail

- 문제

- 풀이

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개의 댓글