num/=10;
这个就是去除一位,看还有没有位数
就是循环while里面的语句。count为1时,999/10为99;然后继续循环,count为2,99/10为9;count为3,9/10为0,然后退出循环。这样输出的位数就是3了。
它是num=num/10;的简写