Advertisement
Josif_tepe

Untitled

Feb 15th, 2022
824
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <algorithm>
  4.  
  5. using namespace std;
  6.  
  7.  
  8. int main()
  9. {
  10.     int broj = 1234;
  11.     int zbir = 0;
  12.     while(broj > 0) {
  13.         int cifra = broj % 10;
  14.         zbir += cifra;
  15.         broj /= 10;
  16.     }
  17.    return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement