Answers for "write c++ program to find even and odd number by using oop"

C++
1

even and odd in c++

#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.";
}
Posted by: Guest on April-16-2021
0

c++ check if number is even or odd

#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;
}
Posted by: Guest on August-03-2021

Code answers related to "write c++ program to find even and odd number by using oop"

Browse Popular Code Answers by Language