class Solution {
public int solution(int n) {
int answer = 0;
for(int i=1; i<=n; i++){
if(n%i == 0){
answer += i;
}
}
return answer;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 개미 군단 (0) | 2023.03.07 |
---|---|
[프로그래머스/자바] 자릿수 더하기 (0) | 2023.03.07 |
[프로그래머스/자바] 삼각형의 완성조건(1) (0) | 2023.02.23 |
[프로그래머스/자바] 문자열 뒤집기 (0) | 2023.02.22 |
[프로그래머스/자바] 양꼬치 (0) | 2023.02.22 |