给一个不多于 5位的正整数,要求:
求出它是几位数?
求出它是几位数?
解决方案
40
#include “stdio.h”
………
{
int m,n=0;
scanf(“%d”,&m);
while(m>0)
{
n++;
m=m/10;
}
printf(“n=%d\n”,n);
reture0;
}
………
{
int m,n=0;
scanf(“%d”,&m);
while(m>0)
{
n++;
m=m/10;
}
printf(“n=%d\n”,n);
reture0;
}