728x90
반응형
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{
for(int i=a; i<=b; i++){
answer+=i;
}
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 음양 더하기 (0) | 2023.03.26 |
---|---|
프로그래머스 - 콜라츠 추측 (0) | 2023.03.25 |
프로그래머스 - 하샤드 수 (0) | 2023.03.25 |
프로그래머스 - 문자열을 정수로 바꾸기 (0) | 2023.03.25 |
프로그래머스 - 정수 내림차순으로 배치하기 (0) | 2023.03.25 |