Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int broj = 767;
- while(broj > 0) {
- int posledna_cifra = broj % 10; // ja vadi poslednata cifra od brojot
- broj /= 10; // ja briseme poslednata cifra od brojot
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement