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;
}
Discussion (5)
Just a heads up that you can add highlighting to the code blocks if you'd like. Just change:
... to specify the language:
Here's an example using
cpp
as a language and one of your snippets:More details in our editor guide!
Now, about the actual code, you can simplify it a little using a ternary:
Cheers!
Thanks, I am new to dev.to, so I have lots to learn.
You're missing the
\n
at the end of the last twocout
statements. And please use whitespace around<<
.Thanks, its fixed now.
Thanks.