반응형
https://school.programmers.co.kr/learn/courses/30/lessons/120802
class Solution {
public int solution(int num1, int num2) {
int answer = -1;
answer = num1 + num2;
return answer;
}
}
class Solution {
public static void main(String[] args) {
int solution1 = solution(3, 2);
int solution2 = solution(100, 2);
System.out.println(solution1);
System.out.println(solution2);
}
public static int solution(int num1, int num2) {
int answer = -1;
answer = num1 + num2;
return answer;
}
}
반응형
'Portpolio > codingtest' 카테고리의 다른 글
프로그래머스 lv3. 단속카메라 java (0) | 2023.12.19 |
---|---|
프로그래머스 lv0. QR Code java (1) | 2023.12.19 |
프로그래머스 lv0. 나머지 구하기 java (0) | 2023.12.18 |
프로그래머스 lv.0 나이 출력 java (0) | 2023.12.18 |
프로그래머스 lv0. 두 수의 차 java (0) | 2023.12.18 |
댓글