본문 바로가기
Algorithm/PROGRAMMERS[Java]

Lv1. 두 정수 사이의 합

by 씨니 2022. 4. 16.
728x90

▶ 문제

 

▶ 풀이방법

class Solution {
    public long solution(int a, int b) {
        long answer = 0;
        
        if(a == b) answer = a;
        else{
            int min = Math.min(a,b);
            int max = Math.max(a,b);
            for(int i = min; i <= max; i++){
                answer += i;
            }
        }
        return answer;
    }
}
728x90