Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int main()
- {
- long long N;
- scanf("%lld",&N);
- while(N)
- {
- if(N%11==0)
- printf("%lld is a multiple of 11.\n",N);
- else printf("%lld is not a multiple of 11.\n",N);
- scanf("%lld",&N);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement