반응형
https://programmers.co.kr/learn/courses/30/lessons/12928
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
int solution(int n) {
int answer = 0;
int i=0;
for(i=1; i<= n; i++){
if(n % i == 0)
answer += i;
}
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] 자릿수 더하기 (0) | 2022.03.19 |
---|---|
[프로그래머스][C++] 이상한 문자 만들기 (0) | 2022.03.19 |
[프로그래머스][C++] 시저 암호 (0) | 2022.03.19 |
[프로그래머스][C++] 문자열을 정수로 바꾸기 (0) | 2022.03.19 |
[프로그래머스][C++] 수박수박수박수박수박수? (0) | 2022.03.19 |