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;
}
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;
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";
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;
}
Top comments (4)
You're missing the
\n
at the end of the last twocout
statements. And please use whitespace around<<
.Thanks, its fixed now.
Thanks, I am new to dev.to, so I have lots to learn.
Thanks.