Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include<stdio.h>
  2. main()
  3. {
  4. int a;
  5. scanf("%d",&a);
  6. if (a%5==0&&a%11==0)
  7. {
  8. printf("Divisible");
  9. }
  10. else
  11. {
  12. printf("Not Divisible");
  13. }
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement