xxxxxxxxxx
#include <iostream>
using namespace std;
int main() {
int x;
cout << "Enter a number:";
cin >> x;
if (x%2==0)
{
cout <<x<<" is an EVEN number.";
}
else
{
cout <<x<<" is an ODD number.";
}
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
int main() {
int n;
cout << "Enter an integer: ";
cin >> n;
if ( n % 2 == 0)
cout << n << " is even.";
else
cout << n << " is odd.";
return 0;
}
xxxxxxxxxx
#include<bits/stdc++.h>
using namespace std;
int main ()
{
int x;
cin >> x;
if (x % 2 == 0) {
cout << x << " " <<"is even number" endl;
} else {
cout << x << " " << "is odd number" endl;
}
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
int main ()
{
int n;
cout << " Enter any number: ";
cin >> n;
if (n%2 == 0){
cout << "Even number";
}
else {
cout << "Odd number";
}
return 0;
}
xxxxxxxxxx
#include<iostream>
using namespace std;
int main()
{
int num1 , num2; // Declaration of two variables
cout<<"Please enter the first number: ";
cin>>num1; // Taking the first number as input
cout<<"Please enter the second number: ";
cin>>num2; // Taking the second number as input
if(num1 % 2 == 0) // if the remainder is zero so the number is divisible by 2 and it is an even number
cout<<"The first number is Even\n";
else // if the remainder is not equal 2 so the number is not divisible by 2 and it is an odd number
cout<<"The first number is Odd\n";
if(num2 % 2 == 0)
cout<<"The second number is Even\n";
else
cout<<"The second number is Odd\n";
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
int main() {
int num = 7;
if((num & 1) == 0)
cout<<num<<" is even";
else
cout<<num<<" is odd";
return 0;
}
xxxxxxxxxx
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main()
{
int inp;
cin>>inp;
if(inp % 2 == 0)
{
cout<<" Even" <<endl;
}
else
{
cout<<"Odd"<<endl;
}
}
xxxxxxxxxx
#include <iostream>
using namespace std;
int take_one(int number){
int answer;
answer = (number - (number%10))/10;
return answer;
}
int main()
{
int nr;
int impare = 0;
cin >> nr;
while (nr){
if ((nr%10)%2 == 1){
impare += 1;
}
nr = take_one(nr);
}
cout << impare;
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "Enter an integer: ";
cin >> n;
(n % 2 == 0) ? cout << n << " Is Even." : cout << n << " Is Odd.";
}