Untitled
unknown
c_cpp
2 years ago
221 B
7
Indexable
#include <iostream>
using namespace std;
int main()
{
int a;
int count = 0;
cin >> a;
if (a != 0) {
while (a != 0) {
a /= 10;
count++;
}
cout << count;
}
else
{
cout << 1;
}
}Editor is loading...