-
1. 문제 설명 정수 n을 입력받아 n의 약수를 모두 더한 값을 리턴하는 문제 2. 풀이 #include #include using namespace std; int solution(int n) { int answer = 0; for (int i = 1; i