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

박의진·2022년 9월 11일
0

코딩테스트

목록 보기
16/25
post-custom-banner

1.

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

2.

class Solution {
    public long solution(int a, int b) {
        long answer = 0;
        
        for(int i = ((a<=b)?a:b) ; i<= ((a<=b)?b:a); i++){
            answer += i;
        }
      
        return answer;
    }
}
profile
주니어 개발자의 개발일지
post-custom-banner

0개의 댓글