Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <set>
- #include <algorithm>
- using namespace std;
- int main()
- {
- int x;
- cin >> x;
- int broj_na_cifri = 0;
- for(int i = x; i > 0; i /= 10) {
- broj_na_cifri++;
- }
- if(x == 0) {
- broj_na_cifri = 1;
- }
- cout << broj_na_cifri << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment