Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Hien thij chu so nguyen duong tu phai qua trai
- // Khai bao cca ham thu vien neu co
- #include<stdio.h>
- #include<conio.h>
- void main()
- {
- int n;
- scanf("%d",&n);
- int a;
- while(n!=0)
- {
- a=n%10;
- printf("%d\t",a);
- n=n/10;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement