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