본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] 순서쌍의 개수

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