728x90 반응형 Java77 프로그래머스 - 나이 출력 class Solution { public int solution(int age) { return 2023-age; } } 2023. 2. 21. 프로그래머스 - 두 수의 곱 class Solution { public int solution(int num1, int num2) { return num1 * num2; } } 2023. 2. 21. 프로그래머스 - 몫 구하기 class Solution { public int solution(int num1, int num2) { return num1/num2; } } 2023. 2. 21. 프로그래머스 - 두 수의 차 class Solution { public int solution(int num1, int num2) { return num1-num2; } } 2023. 2. 21. 이전 1 ··· 16 17 18 19 20 다음 728x90 반응형