쌓고 쌓다
[프로그래머스] 짝수와 홀수 C++ 풀이 본문
https://school.programmers.co.kr/learn/courses/30/lessons/12937?language=cpp
전체 코드
#include <string>
#include <vector>
using namespace std;
string solution(int num) {
string answer = "";
if(num%2==0)
answer+="Even";
else
answer+="Odd";
return answer;
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 핸드폰 번호 가리기 C++ 풀이 (0) | 2022.07.08 |
---|---|
[프로그래머스] 평균 구하기 C++ 풀이 (0) | 2022.07.08 |
[프로그래머스] 제일 작인 수 제거하기 C++ 풀이 (0) | 2022.07.07 |
[프로그래머스] 정수 내림차순으로 배치하기 C++ 풀이 (0) | 2022.07.07 |
[프로그래머스] 자연수 뒤집어 배열로 만들기 C++ 풀이 (0) | 2022.07.07 |
Comments