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

프로그래머스 - 하샤드 수

by 올리브영 2023. 3. 25.
728x90
반응형
class Solution {
    public boolean solution(int x) {
        boolean answer = true;
        String[] str = String.valueOf(x).split("");
        int num = 0;
        for(String a : str){
            num += Integer.parseInt(a);
        }
        if(x%num!=0){
            return false;
        }
        return answer;
    }
}
728x90
반응형