728x90 반응형 분류 전체보기273 프로그래머스 - 두 수의 곱 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. 프로그래머스 - 나머지 구하기 class Solution { public int solution(int num1, int num2) { return num1%num2; } } 2023. 2. 21. 이전 1 ··· 65 66 67 68 69 다음 728x90 반응형