반응형
https://school.programmers.co.kr/learn/courses/30/lessons/120805
class Solution {
public int solution(int num1, int num2) {
int answer = 0;
answer = num1 / num2;
return answer;
}
}
class Solution {
public static void main(String[] args) {
int solution1 = solution(10, 5);
int solution2 = solution(7, 2);
System.out.println(solution1);
System.out.println(solution2);
}
public static int solution(int num1, int num2) {
int answer = 0;
answer = num1 / num2;
return answer;
}
}
반응형
'Portpolio > codingtest' 카테고리의 다른 글
프로그래머스 lv0. 두 수의 차 java (0) | 2023.12.18 |
---|---|
프로그래머스 lv0. 두 수의 곱 java (0) | 2023.12.18 |
프로그래머스 lv0. 숫자 비교하기 java (0) | 2023.12.18 |
프로그래머스 lv1. 크기가 작은 부분 문자열 java (1) | 2023.12.18 |
프로그래머스 lv.0 문자열 섞기 java (1) | 2023.11.29 |
댓글