ppotatoG


Back to all posts

약수의 합

Written by ppotatoG & Posted on November 11th, 2021

Programmers 약수의 합

제출한 답

n의 약수를 answer에 더해주기

function solution(n) {
let answer = 0;
for(let i = 1; i <= n; i++){
if(n % i == 0) answer +=i;
}
return answer;
}
console.log(solution12928(12)) // 28
console.log(solution12928(5)) // 6

Posted on November 11th, 2021