#include<stdio.h>
int main()
{
int num,count=0,i=0;
scanf("%d",&num);
num/=10;
count++;
while(num>0)
{
num/=10;
count++;
}
printf("%d\n",count);
return 0;
}
//注意:在两个数做运算时,只要有一个是浮点数,计算的结果均为浮点数!

相关文章:

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