#include<stdio.h>
#include<conio.h>
void main()
{
int num;
clrscr();
printf("\n Input a number:-");
scanf("%d",&num);
if(num%5==0&&num%11!=0)
printf("\n The number %d is exactly divisible by 5 but not by 11",num);
else
printf
printf("\n The number %d is not required number",num);
getch();
}
No comments:
Post a Comment