#include <string>
#include <vector>
using namespace std;
string solution(int num) {
string answer = "";
if(num%2 ==0)
answer = "Even";
else
answer = "Odd";
return answer;
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1][C++] 문자열 내 p와 y의 개수 (0) | 2024.09.27 |
---|---|
[Level 1][C++] 문자열을 정수로 바꾸기 (0) | 2024.09.27 |
[Level 1][C++] 예산 (0) | 2024.09.27 |
[Level 1][C++] 평균 구하기 (0) | 2024.09.27 |
[Level 1][C++] 두 정수 사이의 합 (0) | 2024.09.27 |