DEV Community

Its Aomi
Its Aomi

Posted on • Updated on

A Simple C++ Odd or Even Checker

Making a simple C++ Odd or Even Checker.

For more Source Codes visit here.

Create the basic c++ program format using header file iostream and namespace std.

#include <iostream>
using namespace std;

int main() 
{
   return 0;
}
Enter fullscreen mode Exit fullscreen mode

After this create a integer variable n, and output a message and let the user enter a number.

   int n;
   cout<<"Enter number: ";
   cin>>n;
Enter fullscreen mode Exit fullscreen mode

Now using if and else we will see whether the entered number is divisible by two, if it is then its a even number otherwise an odd number.

   if(n%2==0)
     cout<<n<<" It is an Even Number";
   else
     cout<<n<<" It is an Odd Number";
Enter fullscreen mode Exit fullscreen mode

You can now complete the program and run it in any compiler to check its working.

#include <iostream>
using namespace std;

int main() 
{
   int n;
   cout<<"Enter number: ";
   cin>>n;
   if(n%2==0)
     cout <<n<< "\nIt is an Even Number";
   else
     cout <<n<< "\nIt is an Odd Number";
   return 0;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (4)

Collapse
 
pauljlucas profile image
Paul J. Lucas

You're missing the \n at the end of the last two cout statements. And please use whitespace around <<.

Collapse
 
itsaomi profile image
Its Aomi

Thanks, its fixed now.

Collapse
 
itsaomi profile image
Its Aomi

Thanks, I am new to dev.to, so I have lots to learn.

Collapse
 
khase231 profile image
Khase

Thanks.