Mon Oct 28 2019

Even Odd

C++ Programming1339 views

File Name: even-odd.cpp

#include<iostream>
using namespace std;

int main() {
	int no;
	cout << "Enter a number:\n";
	cin >> no;

	/* Check the modulus of 'no' is zero or not */
	if(no%2 != 0)
		cout << "The given no is ODD!\n";
	else
		cout << "The given no is EVEN!\n";
	return 0;
}


/* Output */
/* Enter a number:
4

The given no is EVEN! */


/* -------------------------------- */

/* Enter a number:
9

The given no is ODD! */

We use cookies to improve your experience on our site and to show you personalised advertising. Please read our cookie policy and privacy policy.