#include
#include
void main()
{
int a;
clrscr();
printf("enter the value of a = ");
scanf("%d",&a);
if(a%2==0)
{
printf("%d is even",a);
}
else
{
printf("%d is odd",a);
}
getch();
}
#include
void main()
{
int a;
clrscr();
printf("enter the value of a = ");
scanf("%d",&a);
if(a%2==0)
{
printf("%d is even",a);
}
else
{
printf("%d is odd",a);
}
getch();
}
No comments:
Post a Comment