Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int n,temp;
- scanf("%d", &n);
- for(temp=1;temp<=n;temp++)
- {
- if (n%temp==0)
- printf("Brojot e deliv so brojot %d",temp);
- else
- printf("Brojot ne e deliv\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment