C++ Program to check whether an integer entered by the user is odd or even

Introduction

C++ Program to check whether an integer entered number by the user is odd or even. I have used DEV-C++ compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include<iostream>
using namespace std;	

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

    // True if remainder is 0
    if( number%2 == 0 )
        
        cout<< number << " is an even number";
    else
       cout<< number << " is an odd number";
       
    return 0;
}

Result

C++ Program to check whether an integer entered by the user is odd or even
C++ Program to check whether an integer entered by the user is odd or even

 

Leave a Comment