프로그래머스 Lv0단계 나이 출력 (Java) class Solution { public int solution(int age) { int answer = 0; return 2023 - age; } } 프로그래머스 문제 풀기!/Lv0단계 2023.04.25