Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*check whether a number is divisible by 5 and 10 or not*/
- #include<stdio.h>
- int main()
- {
- int a;
- printf("Enter any number:");
- scanf("%d",&a);
- if((a %5 == 0 && a %10 == 0))
- printf("The number is divisible by 5 and 10:%d",a);
- else
- printf("The number is not divisible by 5 and 10:%d",a);
- return 0;
- }
Add Comment
Please, Sign In to add comment