even or odd Get link Facebook X Pinterest Email Other Apps //write c++ program to find out whether the given number is even or odd#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;}x Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment