class Solution {
public String solution(int num) {
String answer = "";
if (num % 2 == 0){
answer = "Even";
}else{
answer = "Odd";
}
return answer;
}
}
if (num % 2 == 0) : num을 2로 나눴을 때 나머지가 0일 때 (짝수일 때)
else : if() 조건이 false일 경우에 실행될 코드블럭
'Plo Algorithm' 카테고리의 다른 글
프로그래머스 Lv1 없는 숫자 더하기 (0) | 2022.03.15 |
---|---|
프로그래머스 Lv1 문자열을 정수로 바꾸기 (0) | 2022.03.15 |
프로그래머스 Lv1 두 정수 사이의 합 (0) | 2022.03.15 |
프로그래머스 Lv1 가운데 글자 가져오기 (0) | 2022.03.15 |
프로그래머스 Lv1 직사각형 별찍기 (0) | 2022.03.15 |