Friday, April 16, 2010

Count Even/Odd Numbers

#include<iostream.h>
#include<conio.h>
 void main()
 {
 clrscr();
 int l,n,e,o;
 e=0;
 o=0;
 cout<<"enter 10 nos.";
 for(l=1;l<=10;l++)
 {
 cin>>n;
 if(n%2==0)
 e=e+1;
 else
 o=o+1;
 }
 cout<<"\neven nos. are"<<e;
 cout<<"\nodd nos. are"<<o;
 getch();
 }

No comments:

Post a Comment