- 난이도: Lv2
프로그래머스 링크: https://school.programmers.co.kr/learn/courses/30/lessons/12924
풀이 링크(GitHub): hayannn/CodingTest_Java/프로그래머스/2/숫자의 표현
풀이 시간 : 24분
class Solution {
public int solution(int n) {
int count = 0;
for (int i = 1; i <= n; i++) {
int sum = 0;
for (int j = i; j <= n; j++) {
sum += j;
if (sum == n) {
count++;
break;
}
if (sum > n) break;
}
}
return count;
}
}