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