**DIVISIBLE NUMBERS**
=====================
#include<studio.h>
#include<conio.h>
void main()
{
int a;
clrscr();
printf("\n a=");
scanf("%d",&a);
if(a%7==0)
{
printf("\n The Number is Divisible by 7");
}
else
{
printf("\n The Number is not Divisible by 7");
}
getch();
}
0 comments:
Post a Comment