[프로그래머스] 두 정수 사이의 합

2020. 6. 21. 18:36프로그래머스/LEVEL 1

class Solution {
    public long solution(int a, int b) {
        long answer = 0;
        
        if(a==b){
            return a;
        }else if(a>b){
            for(int i=b; i<=a; i++){
                answer +=i;
            }
        }else{
            for(int i=a; i<=b; i++){
                answer +=i;
            }
        }
        
        return answer;
    }
}

1. a가 더 큰 경우, b가 더 큰 경우, 두 수가 같은경우로 나누어 푼다.