Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

코딩응급실

프로그래머스: 약수의 합 본문

Java

프로그래머스: 약수의 합

Daeryuk Kim 2024. 3. 2. 16:58
import java.util.*;

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; 
    }
    public static void main(String[] args) {
        int n = 12;
        Solution sol = new Solution();
        int result = sol.solution(n);
        
        System.out.print(result);
        
    }
}