Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include<stdlib.h>
  3.  
  4. int main()
  5. {
  6. int numero;
  7.  
  8. printf("numero: ");
  9. scanf("%d", &numero);
  10.  
  11. while (numero != 0)
  12. {
  13. printf("%d", numero % 10);
  14. numero = numero/10;
  15. }
  16.  
  17. system("pause");
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement