Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. int main() {
  5.     int unos;
  6.     int cifra;
  7.     printf("UNesite broj");
  8.     scanf("%d", &unos);
  9.  
  10.  
  11.     while(unos!=0) {
  12.         cifra = unos % 10;
  13.         printf("%d", cifra);
  14.         unos = unos / 10;
  15.     }
  16.  
  17.  
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement