프로그래머스(Level 0) - 👩‍💻 짝수의 합

Gammi·2023년 1월 25일
0

프로그래머스

목록 보기
32/69

✔ 문제






✔ 해결


class Solution {
  public int solution(int n) {
    int answer = 0;
    for(int i = 0; i <= n; i++) {
      if(i % 2 == 0) {
        answer += i;
      }
    }
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글