728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12928
public class Solution {
public int solution(int n) {
int answer = 0;
for (int i = 0; ++i <= n;)
if (n % i == 0) answer += i;
return answer;
}
}
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 수박수박수박수박수박수? (0) | 2021.08.29 |
---|---|
[프로그래머스 C#] 시저 암호 (0) | 2021.08.21 |
[프로그래머스 C#] 이상한 문자 만들기 (0) | 2021.08.19 |
[프로그래머스 C#] 자릿수 더하기 (0) | 2021.08.19 |
[프로그래머스 C#] 자연수 뒤집어 배열로 만들기 (0) | 2021.08.15 |