Notice
Recent Posts
Recent Comments
Link
bdfgdfg
[레벨1] 짝수와 홀수 본문
반응형
#include <string>
#include <vector>
using namespace std;
string solution(int num) {
string answer = "";
return num % 2 == 0 ? answer = "Even" : answer = "Odd";
}
반응형
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[레벨1] 정수 내림차순으로 배치하기. (0) | 2021.08.26 |
---|---|
[레벨1] 제일 작은 수 제거하기 (0) | 2021.08.25 |
[레벨1] 최대공약수와 최소공배수 - 유클리드 호제법 (0) | 2021.08.22 |
[레벨1] 콜라츠 추측 (0) | 2021.08.21 |
[레벨1] 하샤드 수 (0) | 2021.08.20 |
Comments