프로그래머스(Level 1) - 🕺 두 정수 사이의 합

Gammi·2023년 3월 20일
0

프로그래머스

목록 보기
41/69

✔ 문제






✔ 해결


class Solution {
  public int solution(int a, int b) {
    long answer = 0;
    int min, max = 0;
    
    if(a >= b) {
      max = a;
      min = b;
    }else{
      max = b;
      min = a;
    }
    
    if(a == b) {
      answer = min;
    }else {
      for(int i = min; i <= max; i++) {
        answer += i;
      }
    }
    
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글