Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

أريد كود برنامج للتمييز بين الأعداد الزوجية والفردية

+1 vote
asked Apr 18, 2018 by Mostafa Shehap (130 points)

1 Answer

0 votes
answered Apr 20, 2018 by Anilo Ghoul (140 points)
#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    int nebmer,ruslt;
    cout <<"  ENTRE THE NEMBER : ";
    cin >>nebmer;
    ruslt=nebmer%2;
    if (ruslt!=0)
    {
        cout <<"This number is odd";
    }
    else {
        cout <<"This is an even number";
    }
    
    
}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...