풀이과정
약수를 구하는 알고리즘의 기본 문제이다.
#include <string>
#include <vector>
using namespace std;
int solution(int n) {
int answer = 0;
for(int i = 1; i <= n; i++){
if(n % i == 0) answer += i;
}
return answer;
}
'🍞 Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스][Level1] 자릿수 더하기 c++ (0) | 2022.09.02 |
---|---|
[프로그래머스][Level1] 이상한 문자 만들기 c++ (0) | 2022.09.02 |
[프로그래머스][Level1] 약수의 개수와 덧셈 c++ (0) | 2022.09.02 |
[프로그래머스][Level1] 수박수박수박수박수박수? c++ (0) | 2022.09.02 |
[프로그래머스][Level1] 소수 찾기 c++ (0) | 2022.09.02 |