프로그래머스(Level 0) - 🧛‍♀️ 나이 출력

Gammi·2022년 12월 15일
0

프로그래머스

목록 보기
9/69

✔ 문제





✔ 풀이


class Solution {
  public int solution(int age) {
    int answer = 0;
    
    answer = 2022 - age + 1;
   
    return asnwer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글