Advertisement
Josif_tepe

Untitled

Apr 11th, 2023
644
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     int broj;
  6.     cin >> broj;
  7.    
  8.     int nov_broj = 0;
  9.     while(broj > 0) {
  10.         int cifra = broj % 10;
  11.         nov_broj = (nov_broj * 10) + cifra;
  12.         broj /= 10;
  13.     }
  14.    
  15.     while(nov_broj > 0) {
  16.         int cifra = nov_broj % 10;
  17.         cout << cifra << " ";
  18.         nov_broj /= 10;
  19.     }
  20.     return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement