28. 하샤드 수

박재균·2022년 1월 20일
0

알고리즘

목록 보기
28/28

class Solution {
    public boolean solution(int x) 
    {
        int total = 0;
    	int temp = x;    	
    	while ( temp > 0)
    	{
    		total += temp%10;
    		temp /= 10;
    		System.out.println(total);    		
    	}    	
        boolean answer = x % total == 0 ? true : false;
        
        return answer;
    }
}
profile
열심히 배우겠습니다.

0개의 댓글

관련 채용 정보