본문 바로가기
IT_tech/알고리즘

프로그래머스-약수의 합 java

by 신드로 2020. 6. 24.

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;
}
}

나머지가 0인것을 모두 더하면 끝