프로그래머스 Level1 : 연습문제 짝수와 홀수 문제 class Solution { public String solution(int num) { if(num%2==0) return "Even"; else return "Odd"; } }