class Solution {
public boolean solution(int x) {
String str = x + "";
int num = 0;
for(int i=0; i<str.length(); i++)
num += Integer.parseInt(str.substring(i, i+1));
return x % num == 0;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 정수 제곱근 판별 (0) | 2023.08.03 |
---|---|
[프로그래머스/자바] 제일 작은 수 제거하기 (0) | 2023.08.03 |
[프로그래머스/자바] 정수 내림차순으로 배치하기 (0) | 2023.08.02 |
[프로그래머스/자바] 약수의 합 (0) | 2023.07.30 |
[프로그래머스/자바] 핸드폰 번호 가리기 (0) | 2023.07.29 |