2020-01-26 게시 됨2020-01-26 업데이트 됨Algorithm / Programmers몇 초안에 읽기 (약 30 단어)[프로그래머스] 짝수와 홀수num이 짝수면 Even 홀수면 Odd 123456789101112class Solution { public String solution(int num) { String answer = ""; if (num % 2 == 0){ answer = "Even"; } else{ answer = "Odd"; } return answer; }} [프로그래머스] 짝수와 홀수https://msj0319.github.io/2020/01/26/프로그래머스-짝수와-홀수/AuthorMoonDoniPosted on2020-01-26Updated on2020-01-26Licensed under#알고리즘Algorithm프로그래머스