Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // tinh uoc so nguyen hien co
- // Khai bao cac ham thu vien neu co
- #include<stdio.h>
- #include<conio.h>
- void main()
- {
- int n;
- scanf("%d",&n);
- for(int i=1;i<=n;i++)
- {
- if(n%i==0)
- {
- printf("%d\t",i);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement