사생활 보호 설정
https://gamjia.tistory.com
Updated News
Mini Rooms
답글수 [0]
What Friends Say
한마디로 표현해봐~
1촌평 관리
12937번 짝수와 홀수
GamJia 2023. 3. 20. 09:20
코딩테스트 연습 - Level 1 - 짝수와 홀수
https://programmers.co.kr/learn/courses/30/lessons/12937
#include <string> #include <vector> using namespace std; string solution(int num) { string answer = ""; if(num%2!=0) { answer="Odd"; } else { answer="Even"; } return answer; }