프로그래머스 - 나이 출력

AMJ·2023년 3월 17일
0

문제링크 - 프로그래머스 - 나이 출력

class Solution {
    public int solution(int age) {
        int answer = 2023 - age;
        return answer;
    }
}
profile
재미있는 것들

0개의 댓글