void countdigst(int last_number,int *count_arry)
{
int i;
for(i= 1;i <= last_number;i++)
{
//不滿足while後,i=0,此時為什麼i每次進來為1而沒有自增為下一個數呢?
//也就是為//什麼沒有執行i++?
int temp = 0;
while( i != 0)
{
temp = i%10;
count_arry[temp]++;
i /= 10;
}
}
}
i/=10;
i是整型,而且初始化為1.只要i < 10,從whlie循環中出來的i值永遠為0,i++永遠為!
可以這樣改:
int i;
for(i= 10; i <= last_number + 9; i++)
{
//不滿足while後,i=0,此時為什麼i每次進來為1而沒有自增為下一個數呢?
//也就是為//什麼沒有執行i++?
int temp = 0;
while( ( i - 9) ^ 0)
{
temp = (i - 9) % 10;
count_arry[temp]++;
i /= 10;
}
}
}
}