MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / main

Function main

Lab_02/02_odd_even.cpp:6–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4using namespace std;
5
6int main() {
7 int a;
8 cout << "Enter the number: ";
9 cin >> a;
10
11 if (a % 2 == 0)
12 cout << "Your number is Even!" << endl;
13 else
14 cout << "Your number is Odd!" << endl;
15
16 system("pause");
17 return 0;
18}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected