본문 바로가기
C++

[프로그래머스] 홀짝 구분하기

by 띰쥬 2025. 8. 26.
728x90
반응형
SMALL

#include <iostream>

using namespace std;

int main(void) {
    int n;
    cin >> n;
    
    if(n%2 == 0)
        cout << n << " is even" << endl;
    else
        cout << n << " is odd" << endl;
    
    return 0;
}

728x90
반응형
LIST

댓글