Susri

Assignment 2

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