Advertisement
Josif_tepe

Untitled

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