MCPcopy Create free account
hub / github.com/E869120/math-algorithm-book / main

Function main

codes/cpp/Code_5_03_1.cpp:4–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4int main() {
5 int N;
6 cin >> N;
7 if (N % 2 == 0) cout << "Yes" << endl;
8 else cout << "No" << endl;
9 return 0;
10}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected