#include<stdio.h>

int main()
{
    int x,i;
    scanf("%ld",&x);
    for(i=0;x>0;i++)
    x/=10;
    if(x==0)
    printf("%d",i);
    return 0;
}

相关文章:

  • 2022-12-23
  • 2021-12-15
  • 2021-08-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-17
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2021-07-12
相关资源
相似解决方案