본문 바로가기
알고리즘 문제풀이/Programmers - 자바

프로그래머스 - 합성수 찾기

by 올리브영 2023. 3. 9.
728x90
반응형
class Solution {
    public int solution(int n) {
        int answer = 0;
        
        for(int i=1; i<=n; i++){
            int count = 0;
            for(int j=1; j<=i; j++){
                if(i%j==0){
                    count++;
                }
            }
            if(count>=3){
                answer++;
            }
        }
        return answer;
    }
}
728x90
반응형