Răspuns:
#include <iostream>
using namespace std;
int main()
{
int n,nr;
cin>>n;
nr=0;
while(n!=0)
nr++;
n=n/10;
}
cout<<nr;
return 0;
Explicație: