Advertisement
ahmad_zizo

You can say 11

Jul 1st, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. int main()
  2. {
  3. long long N;
  4. scanf("%lld",&N);
  5. while(N)
  6. {
  7. if(N%11==0)
  8. printf("%lld is a multiple of 11.\n",N);
  9. else printf("%lld is not a multiple of 11.\n",N);
  10. scanf("%lld",&N);
  11. }
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement