" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
using namespace std;
int main()
{
int numero;
cout<<"Digite un numero:";
cin >>numero;
if(numero%2==0)
{
cout<<"El numero es par :D";
}
else
{
cout<<"El numero es impar D:";
}
return 0;
}
;)