1.- Diga si un número es par o impar #include<iostream.h> #include<conio.h> void main() {int x; clrscr(); cout<<"Ingrese numero:"; cin>>x; cout<<endl; if(x%2==0) cout<<"ES UN NUMERO PAR"<<"\t"<<x ; else cout<<"ES UN NUMERO IMPAR"<<"\t"<<x; getch(); }