[프로그래머스] Level.1하샤드 수

박의진·2022년 9월 10일
0

코딩테스트

목록 보기
11/25
post-custom-banner
class Solution {
    public boolean solution(int x) {
        boolean answer = true;
        String digit = String.valueOf(x);
        int digitSum = 0;
        for(int i=0; i<digit.length(); i++){
            digitSum += Integer.parseInt(Character.toString(digit.charAt(i)));
        }
        
        if(x%digitSum==0)
            answer = true;
        else
            answer = false;
        
        return answer;
    }
}
profile
주니어 개발자의 개발일지

0개의 댓글