class Solution {
public long solution(int a, int b) {
long answer = 0;
if (a > b) {
for (int i = b; i <= a; i++) answer += i;
} else if (a < b) {
for (int i = a; i <= b; i++) answer += i;
} else {
answer = a;
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2023.02.08 |
---|---|
[프로그래머스] 콜라츠 추측 (0) | 2023.02.08 |
[프로그래머스] 나머지가 1이 되는 수 찾기 (0) | 2023.02.08 |
[프로그래머스] 정수 내림차순으로 배치하기 (0) | 2023.02.08 |
[프로그래머스] x만큼 간격이 있는 n개의 숫자 (0) | 2023.02.08 |