반응형
https://school.programmers.co.kr/learn/courses/30/lessons/120820
class Solution {
public int solution(int age) {
int answer = 0;
answer = 2022 - age + 1;
return answer;
}
}
class Solution {
public static void main(String[] args) {
int solution1 = solution(40);
int solution2 = solution(23);
System.out.println(solution1);
System.out.println(solution2);
}
public static int solution(int age) {
int answer = 0;
answer = 2022 - age + 1;
return answer;
}
}
반응형
'Portpolio > codingtest' 카테고리의 다른 글
프로그래머스 lv0. 두 수의 합 java (0) | 2023.12.18 |
---|---|
프로그래머스 lv0. 나머지 구하기 java (0) | 2023.12.18 |
프로그래머스 lv0. 두 수의 차 java (0) | 2023.12.18 |
프로그래머스 lv0. 두 수의 곱 java (0) | 2023.12.18 |
프로그래머스 lv0. 몫 구하기 java (0) | 2023.12.18 |
댓글