Untitled
unknown
plain_text
2 years ago
243 B
12
Indexable
#include <stdio.h>
int main()
{
int n,count=0;
scanf("%d",&n);
while (n!=0)
{
if (n%10==0)
{
n/=10;
}
count++;
}
printf("%d\n",count);
return 0;
}Editor is loading...